13 lines
274 B
TypeScript
13 lines
274 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly MODE: 'development' | 'production';
|
|
readonly DEV: boolean;
|
|
readonly PROD: boolean;
|
|
// add other environment variables here as needed
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|