env.d.ts 359 B

12345678910111213141516
  1. declare namespace NodeJS {
  2. interface ProcessEnv {
  3. readonly VITE_APP_TITLE: string
  4. readonly VITE_BASE_API: string
  5. }
  6. }
  7. /** 声明 vite 环境变量的类型(如果未声明则默认是 any) */
  8. interface ImportMetaEnv {
  9. readonly VITE_APP_TITLE: string
  10. readonly VITE_BASE_API: string
  11. }
  12. interface ImportMeta {
  13. readonly env: ImportMetaEnv
  14. }