vue.config.js 678 B

12345678910111213141516171819202122232425262728
  1. 'use strict'
  2. const path = require('path')
  3. const port = process.env.port || process.env.npm_config_port || 9527 // dev port
  4. module.exports = {
  5. publicPath: '/wap',
  6. outputDir: 'dist',
  7. indexPath: process.env.NODE_ENV === 'development' ? 'mer.html' : 'index.html',
  8. lintOnSave: process.env.NODE_ENV === 'development',
  9. productionSourceMap: false,
  10. devServer: {
  11. port: port,
  12. // open: true,
  13. overlay: {
  14. warnings: false,
  15. errors: true
  16. },
  17. proxy: {
  18. '/api': {
  19. target: `https://www.jzrc.org.cn`, // 需要代理到的地址
  20. changeOrigin: true,
  21. // ws: true,
  22. pathRewrite: {
  23. '^/api': '/api'
  24. }
  25. }
  26. }
  27. }
  28. }