blob: 11d7a7a0514f8983a5ce9c9c1642869c94909503 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/// <reference types="vite/client" />
interface ViteTypeOptions {
// By adding this line, you can make the type of ImportMetaEnv strict
// to disallow unknown keys.
// strictImportMetaEnv: unknown
}
interface ImportMetaEnv {
readonly VITE_BASENAME: string
readonly VITE_BPID: string
readonly VITE_TAG_MANAGER: string
}
interface ImportMeta {
readonly env: ImportMetaEnv
}
|