pranav8tripathi@gmail.com commited on
Commit
9a2a6c2
·
1 Parent(s): ab03779
Files changed (1) hide show
  1. src/vite-env.d.ts +13 -0
src/vite-env.d.ts CHANGED
@@ -1 +1,14 @@
1
  /// <reference types="vite/client" />
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  /// <reference types="vite/client" />
2
+
3
+ interface ImportMetaEnv {
4
+ readonly VITE_APP_TITLE?: string;
5
+ readonly BASE_URL: string;
6
+ readonly MODE: string;
7
+ readonly DEV: boolean;
8
+ readonly PROD: boolean;
9
+ readonly SSR: boolean;
10
+ }
11
+
12
+ interface ImportMeta {
13
+ readonly env: ImportMetaEnv;
14
+ }