env.d.ts 201 B

12345678910
  1. /// <reference types="vite/client" />
  2. interface ImportMetaEnv {
  3. readonly VITE_API_BASE_URL?: string
  4. readonly VITE_AMAP_WEB_JS_KEY: string
  5. }
  6. interface ImportMeta {
  7. readonly env: ImportMetaEnv
  8. }