env.d.ts 226 B

12345678910
  1. /// <reference types="vite/client" />
  2. interface ImportMetaEnv {
  3. readonly VITE_API_URL_TEST: string
  4. readonly VITE_API_URL_PRODUCT: string
  5. // 更多环境变量...
  6. }
  7. interface ImportMeta {
  8. readonly env: ImportMetaEnv
  9. }