13 lines
226 B
TypeScript
13 lines
226 B
TypeScript
interface ViteTypeOptions {
|
|
// disallow unknown keys.
|
|
strictImportMetaEnv: unknown;
|
|
}
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_BASE_URL: string | undefined;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|