revite/src/env.d.ts

11 lines
173 B
TypeScript
Raw Normal View History

2021-06-18 20:07:26 +01:00
interface ImportMetaEnv {
2021-09-11 17:36:23 +01:00
DEV: boolean;
2021-07-05 11:25:20 +01:00
VITE_API_URL: string;
VITE_THEMES_URL: string;
2021-09-10 18:03:06 -04:00
BASE_URL: string;
2021-06-18 20:07:26 +01:00
}
interface ImportMeta {
2021-09-11 17:36:23 +01:00
env: ImportMetaEnv;
}