Blame view

getEnvConfig.ts 191 Bytes
1
2
3
4
5
6
import type { GlobEnvConfig } from './src/types/config';

export const getGlobEnvConfig = (): GlobEnvConfig => {
  const env = import.meta.env;
  return (env as unknown) as GlobEnvConfig;
};