11 lines
212 B
TypeScript
11 lines
212 B
TypeScript
// / <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly MEDUSA_ADMIN_BACKEND_URL: string
|
|
readonly VITE_MEDUSA_V2: "true" | "false"
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|