vite env interface

This commit is contained in:
2025-11-07 20:17:07 +05:30
parent 033f82208a
commit e660c2bcb1

9
src/vite-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;
}