Files
medusa-store/packages/admin-next/dashboard/src/vite-env.d.ts
Kasper Fabricius Kristensen 51acd1da5b fix(dashboard): Minor cleanup and improve text legibility (#7045)
**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.
2024-04-11 08:44:13 +00:00

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
}