mirror of
https://git.hmsn.ink/kospo/svcm/dmz.git
synced 2026-03-20 00:52:23 +09:00
14 lines
337 B
TypeScript
14 lines
337 B
TypeScript
/**
|
|
* We can extends the env types here
|
|
* @see https://vitejs.dev/guide/env-and-mode.html#env-files
|
|
*/
|
|
|
|
interface ImportMetaEnv extends Readonly<Record<string, string>> {
|
|
readonly VITE_API_BASE_URL: string | undefined
|
|
readonly VITE_MAPBOX_ACCESS_TOKEN: string | undefined
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|