mirror of
https://github.com/vbenjs/vben-admin-thin-next.git
synced 2025-01-24 02:00:22 +08:00
7 lines
191 B
TypeScript
7 lines
191 B
TypeScript
import type { GlobEnvConfig } from './src/types/config';
|
|
|
|
export const getGlobEnvConfig = (): GlobEnvConfig => {
|
|
const env = import.meta.env;
|
|
return (env as unknown) as GlobEnvConfig;
|
|
};
|