9 lines
144 B
TypeScript
9 lines
144 B
TypeScript
interface ImportMetaEnv {
|
|
readonly DEV: boolean;
|
|
readonly VITE_API_URL?: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|