11 lines
204 B
TypeScript
Raw Normal View History

2024-08-20 15:57:58 +02:00
/// <reference types='vite/client' />
2024-11-06 19:46:29 +01:00
/// <reference types="vite-plugin-svgr/client" />
2024-08-20 15:57:58 +02:00
interface ImportMetaEnv {
VITE_CODEX_API_URL: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}