vue.config.js 703 B

1234567891011121314151617181920212223242526272829
  1. module.exports = {
  2. lintOnSave: false,
  3. assetsDir: 'static',
  4. publicPath: "/",
  5. outputDir: 'dist',
  6. productionSourceMap: false,
  7. devServer: {
  8. host: '0.0.0.0',
  9. port: 3000,
  10. proxy: {
  11. [process.env.VUE_APP_BASE_API]: {
  12. // target: 'http://192.168.1.24:8080',
  13. target: 'http://1.82.219.241:8080', // 测试
  14. // target: 'http://1.82.219.240:8080', // 生产
  15. changeOrigin: true,
  16. pathRewrite: {
  17. ['^' + process.env.VUE_APP_BASE_API]: ''
  18. }
  19. },
  20. "/printFile": {
  21. target: 'https://smzc-1253299035.cos.ap-nanjing.myqcloud.com',
  22. changeOrigin: true,
  23. },
  24. },
  25. client: {
  26. overlay: false
  27. }
  28. },
  29. }