.env.development 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # 开发环境加载
  2. # 环境标识
  3. VITE_APP_ENV = "development"
  4. # 公共基础路径
  5. VITE_BASE = "/"
  6. # 代理URL路径
  7. VITE_BASE_URL = "/dev-api"
  8. # 模拟数据接口路径
  9. VITE_BASE_MOCK_URL = "/mock-api"
  10. # boot服务端接口路径
  11. VITE_BASE_SERVER_URL = "http://192.168.101.93:8000"
  12. # VITE_BASE_SERVER_URL = "http://10.236.2.146:8080/dev-api" # 线上
  13. # VITE_BASE_SERVER_URL = "http://10.206.20.153:8000" # 青岛港-内网 dns: 10.201.192.1
  14. # VITE_BASE_SERVER_URL = "http://192.168.43.231:8000" # 热点
  15. # VITE_BASE_SERVER_URL = "http://192.168.1.133:8000" # 青岛港-7楼
  16. # 微前端-工作流
  17. VITE_WORKFLOW_URL = "http://localhost:1888/"
  18. # 微前端-代码生成器
  19. VITE_CODEMAKER_URL = "http://localhost:32582/"
  20. # 宝信单点登录
  21. VITE_BX_CLIENT_ID = "项目英文名"
  22. VITE_BX_AUTH_URL = "http://eplattest.qdgwlds.com/cloud/oauth/authorize"
  23. VITE_BX_REDIRECT_URL = "http://localhost:8080/yh"
  24. VITE_BX_LOGOUT_URL = "http://eplattest.qdgwlds.com/cloud/"
  25. # 边端单点登录
  26. VITE_EDGE_CLIENT_ID = "frame-demo"
  27. VITE_EDGE_AUTH_URL = "http://qdport.auth.vue3.10.236.3.36.nip.io/oauth/authorize"
  28. VITE_EDGE_REDIRECT_URL = "http://localhost:8080/ssoyh"
  29. VITE_EDGE_LOGOUT_URL = "http://qdport.auth.vue3.10.236.3.36.nip.io/logout"
  30. # 打包是否使用Mock
  31. VITE_APP_PRODMOCK = false