env.d.ts 463 B

1234567891011121314151617
  1. // eslint-disable-next-line spaced-comment
  2. /// <reference types="vite/client" />
  3. interface ImportMetaEnv {
  4. readonly VITE_SPEAKING_API_HOST?: string
  5. }
  6. // 容器部署时由 nginx 启动脚本生成 /config.js 注入;dev 与普通构建下是空对象。
  7. interface AppRuntimeConfig {
  8. readonly SPEAKING_API_HOST?: string
  9. readonly AZURE_SPEECH_KEY?: string
  10. readonly AZURE_SPEECH_REGION?: string
  11. }
  12. interface Window {
  13. __APP_CONFIG__?: AppRuntimeConfig
  14. }