7 lines
125 B
TypeScript
7 lines
125 B
TypeScript
|
|
interface ImportMetaEnv {
|
||
|
|
readonly VITE_BACKEND_URL: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
interface ImportMeta {
|
||
|
|
readonly env: ImportMetaEnv;
|
||
|
|
}
|