**What** - Cleans up some artifacts from the V1 -> V2 migrations. - Removes the MedusaProvider from the root in favor of a plain QueryClient. - Applies font styles to make the text in admin resemble designs in Figma more closely.
11 lines
217 B
TypeScript
11 lines
217 B
TypeScript
// / <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_MEDUSA_ADMIN_BACKEND_URL: string
|
|
readonly VITE_MEDUSA_V2: "true" | "false"
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|