dev@locazia: add env

This commit is contained in:
user 2024-03-05 01:17:50 +03:00
parent 88f8efa389
commit a9abf711b5
1 changed files with 9 additions and 0 deletions

9
src/env.d.ts vendored Normal file
View File

@ -0,0 +1,9 @@
/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_BASE_URL: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}