mirror of
https://github.com/vbenjs/gf-vben-admin.git
synced 2025-01-24 04:10:20 +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;
|
|
};
|