Files
Work/Frontend/src/global.d.ts
2026-06-19 17:39:39 +01:00

12 lines
203 B
TypeScript

// Path: Frontend/src/global.d.ts
/// <reference types="@solidjs/start/env" />
interface ImportMetaEnv {
readonly VITE_API_BASE_URL?: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}