revite/src/env.d.ts
brecert 6a32e451ac
Use VITE_THEMES_URL for the default theme manifest
- typed `ImportMeta` to have `env`
2021-09-06 06:38:53 -04:00

8 lines
No EOL
131 B
TypeScript

interface ImportMetaEnv {
VITE_API_URL: string;
VITE_THEMES_URL: string;
}
interface ImportMeta {
env: ImportMetaEnv
}