11 lines
224 B
TypeScript
11 lines
224 B
TypeScript
/// <reference types="vite/client" />
|
|
interface ImportMetaEnv {
|
|
readonly VITE_API_URL: string;
|
|
readonly VITE_APP_TITLE: string;
|
|
readonly VITE_APP_ENV: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|