2024-07-10 15:57:37 +00:00
|
|
|
/// <reference types="vite/client" />
|
2024-07-24 10:13:28 +00:00
|
|
|
|
|
|
|
interface ImportMetaEnv {
|
|
|
|
readonly VITE_APP_RELAY: string
|
2024-07-29 06:26:26 +00:00
|
|
|
readonly VITE_ADMIN_NPUBS: string
|
2024-08-28 17:03:43 +00:00
|
|
|
readonly VITE_REPORTING_NPUB: string
|
2024-09-02 08:43:39 +00:00
|
|
|
readonly VITE_FALLBACK_MOD_IMAGE: string
|
|
|
|
readonly VITE_FALLBACK_GAME_IMAGE: string
|
2024-07-24 10:13:28 +00:00
|
|
|
// more env variables...
|
|
|
|
}
|
|
|
|
|
|
|
|
interface ImportMeta {
|
|
|
|
readonly env: ImportMetaEnv
|
|
|
|
}
|