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