vue.config.js 1.3KB

1234567891011121314151617181920212223242526272829303132333435
  1. module.exports = {
  2. publicPath: "/admin-vue/",
  3. // 关闭线上源码
  4. productionSourceMap: false,
  5. chainWebpack: (config) => {
  6. const svgRule = config.module.rule('svg');
  7. svgRule.uses.clear();
  8. svgRule
  9. .use('babel-loader')
  10. .loader('babel-loader')
  11. .end()
  12. .use('vue-svg-loader')
  13. .loader('vue-svg-loader');
  14. },
  15. devServer: {
  16. host: "0.0.0.0",
  17. port: 8080, // 端口号
  18. https: false, // https:{type:Boolean}
  19. // https: true,
  20. open: true, //配置自动启动浏览器
  21. // 配置多个代理
  22. proxy: {
  23. "/xcx/api": {
  24. target: "https://sws.kuyicloud.com",// 要访问的接口域名https://swstest.sgjyun.com
  25. ws: false,// 是否启用websockets
  26. changeOrigin: true, //开启代理:在本地会创建一个虚拟服务端,然后发送请求的数据,并同时接收请求的数据,这样服务端和服务端进行数据的交互就不会有跨域问题
  27. pathRewrite: {
  28. // '^/xcx/api': '' //这里理解成用'/api'代替target里面的地址,比如我要调用'http://40.00.100.100:3002/user/add',直接写'/api/user/add'即可
  29. }
  30. }
  31. }
  32. }
  33. }