Files
echoes-of-the-ash/pwa/src/vite-env.d.ts
2025-11-27 16:27:01 +01:00

15 lines
310 B
TypeScript

/// <reference types="vite/client" />
/// <reference types="vite-plugin-pwa/client" />
interface ImportMetaEnv {
readonly PROD: boolean
readonly DEV: boolean
readonly MODE: string
readonly VITE_API_URL?: string
readonly VITE_WS_URL?: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}