vue.config.js 790 B

1234567891011121314151617181920212223242526272829303132
  1. module.exports = {
  2. lintOnSave: false,
  3. assetsDir: "static",
  4. publicPath: "/",
  5. outputDir: "dist",
  6. productionSourceMap: false,
  7. devServer: {
  8. port: 80,
  9. proxy: {
  10. [process.env.VUE_APP_BASE_API]: {
  11. // 本地环境
  12. // target: 'http://192.168.1.21:8080',
  13. // 服务器环境(测试)
  14. target: "https://smzctest.shizhi.tv/prod-api",
  15. // 服务器环境(生产)
  16. // target: 'https://smzc.shizhi.tv/prod-api',
  17. changeOrigin: true,
  18. pathRewrite: {
  19. ["^" + process.env.VUE_APP_BASE_API]: "",
  20. },
  21. },
  22. // 人脸识别
  23. "/oldRlsb": {
  24. target: "https://ai.sdaer.cn",
  25. pathRewrite: {
  26. "^/oldRlsb": "",
  27. },
  28. changeOrigin: true,
  29. },
  30. },
  31. },
  32. };