vue.config.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // module.exports = {
  2. // /* 部署生产环境和开发环境下的URL:可对当前环境进行区分,baseUrl 从 Vue CLI 3.3 起已弃用,要使用publicPath */
  3. // publicPath: "",
  4. // assetsDir: "static/lipin",
  5. // outputDir: "dist",
  6. // runtimeCompiler: true,
  7. // productionSourceMap: false,
  8. // /* webpack-dev-server 相关配置 */
  9. // devServer: {
  10. // /* 自动打开浏览器 */
  11. // open: true,
  12. // /* 设置为0.0.0.0则所有的地址均能访问 */
  13. // host: 127.0.0.1,
  14. // port: 8080,
  15. // https: false,
  16. // hotOnly: false,
  17. // /* 使用代理 */
  18. // proxy: {
  19. // '/api': {
  20. // /* 目标代理服务器地址 */
  21. // target:'/centtenAdvise/upload' ,
  22. // /* 允许跨域 */
  23. // changeOrigin: true,
  24. // pathRewrite: {
  25. // '^/api': ""
  26. // }
  27. // },
  28. // '/test’: {
  29. // /* 目标代理服务器地址 */
  30. // target:'http://localhost:8080/centtenAdvise/test' ,
  31. // /* 允许跨域 */
  32. // changeOrigin: true,
  33. // pathRewrite: {
  34. // '^/test': ""
  35. // }
  36. // },
  37. // },
  38. // },
  39. // }