revite/src/env.d.ts

8 lines
131 B
TypeScript
Raw Normal View History

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