mirror of
https://github.com/vbenjs/vben-admin-thin-next.git
synced 2025-02-03 02:18:40 +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;
|
||
|
};
|