revite/src/env.d.ts

8 lines
131 B
TypeScript
Raw Normal View History

2021-06-18 20:07:26 +01:00
interface ImportMetaEnv {
2021-07-05 11:25:20 +01:00
VITE_API_URL: string;
VITE_THEMES_URL: string;
2021-06-18 20:07:26 +01:00
}
interface ImportMeta {
env: ImportMetaEnv
}