vue.config.js 848 B

1234567891011121314151617181920212223242526272829
  1. module.exports = {
  2. // publicPath: '/child_pc/',
  3. publicPath: '/pc',
  4. assetsDir:"static",
  5. outputDir: 'child',
  6. indexPath:"index.html",
  7. filenameHashing:"true",
  8. productionSourceMap: false,
  9. lintOnSave: false,
  10. devServer: {
  11. host:'0.0.0.0',
  12. port: 8086, // 端口号
  13. hot:true,
  14. disableHostCheck:true,//热更新不生效 可以打开此属性
  15. // https: false, // https:{type:Boolean}
  16. open: true, //配置自动启动浏览器
  17. proxy: {
  18. '/chat': {
  19. // target: process.env.VUE_APP_TARGET,
  20. target: 'http://10.113.248.4:8089',
  21. // ws: true,
  22. changeOrigin: true,
  23. pathRewrite: {
  24. '^/chat': '' //代理的路径
  25. }
  26. },
  27. }
  28. },
  29. }