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

12 lines
220 B
TypeScript
Raw Normal View History

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