/// interface ImportMetaEnv { readonly MODE: 'development' | 'production'; readonly DEV: boolean; readonly PROD: boolean; // add other environment variables here as needed } interface ImportMeta { readonly env: ImportMetaEnv; }