vue.config.js 774 B

123456789101112131415161718192021222324252627
  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. port: 8086, // 端口号
  12. hot:true,
  13. disableHostCheck:true,//热更新不生效 可以打开此属性
  14. // https: false, // https:{type:Boolean}
  15. open: true, //配置自动启动浏览器
  16. proxy: {
  17. '/chat': {
  18. target: process.env.VUE_APP_TARGET,
  19. // ws: true,
  20. changeOrigin: true,
  21. pathRewrite: {
  22. '^/chat': '/chat' //代理的路径
  23. }
  24. },
  25. }
  26. },
  27. }