revite/src/env.d.ts

11 lines
173 B
TypeScript
Raw Normal View History

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