vue.config.js 897 B

123456789101112131415161718192021222324252627282930
  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. // "http://43.143.198.30:8089";
  21. target: 'http://43.143.198.30:8089',
  22. // ws: true,
  23. changeOrigin: true,
  24. pathRewrite: {
  25. '^/chat': '' //代理的路径
  26. }
  27. },
  28. }
  29. },
  30. }