Files
dashboard/frontend/src/vite-env.d.ts
Matthias Hochmeister 2a70c274fb update env setup
2026-02-27 14:13:50 +01:00

12 lines
231 B
TypeScript

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_API_URL: string;
readonly AUTHENTIK_URL: string;
readonly AUTHENTIK_CLIENT_ID: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}