Files
originsdigital/frontend/src/vite-env.d.ts
Tetardtek 0591cd4528
Some checks failed
CI/CD — Build & Deploy / Build (push) Failing after 40s
CI/CD — Build & Deploy / Deploy to VPS (push) Has been skipped
feat(frontend): useAuth /auth/me, videos list + locked flag, VITE_API_URL
2026-03-14 08:06:51 +01:00

11 lines
197 B
TypeScript

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