degmods.com/src/vite-env.d.ts

15 lines
346 B
TypeScript
Raw Normal View History

/// <reference types="vite/client" />
interface ImportMetaEnv {
readonly VITE_APP_RELAY: string
readonly VITE_ADMIN_NPUBS: string
readonly VITE_REPORTING_NPUB: string
readonly VITE_FALLBACK_MOD_IMAGE: string
readonly VITE_FALLBACK_GAME_IMAGE: string
// more env variables...
}
interface ImportMeta {
readonly env: ImportMetaEnv
}