vue.config.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. module.exports = {
  2. productionSourceMap: false,
  3. publicPath: "./",
  4. // outputDir: "faw-dbv",
  5. devServer: {
  6. open: true,
  7. // host: "127.0.0.1",
  8. port: 8080,
  9. https: false,
  10. hotOnly: false,
  11. proxy: {
  12. "/chart": {
  13. // target: "http://10.16.4.11:7001", // 要访问的接口域名
  14. target: "http://127.0.0.1:7001", // 要访问的接口域名
  15. // target: "http://10.112.4.7:31015", // 要访问的接口域名
  16. // target: "http://10.16.4.4:7001", // 要访问的接口域名
  17. // target: "http://10.6.181.20:31002", // alb后端路径
  18. // target: "http://10.7.116.245:31045", // 生产后端路径
  19. // target: "http://10.124.20.2:60075/chart", // 线上代理
  20. // target: "http://fawtsp-ops.faw.cn:60075/chart", // 生产线上代理 10.7.116.247:60070
  21. ws: true, // 是否启用websockets
  22. changeOrigin: true, //开启代理:在本地会创建一个虚拟服务端,然后发送请求的数据,并同时接收请求的数据,这样服务端和服务端进行数据的交互就不会有跨域问题
  23. pathRewrite: {
  24. "^/chart": "" //这里理解成用'/api'代替target里面的地址,比如我要调用'http://40.00.100.100:3002/user/add',直接写'/api/user/add'即可
  25. }
  26. }
  27. }
  28. },
  29. css: {
  30. loaderOptions: {
  31. postcss: {
  32. // 这是rem适配的配置 注意: remUnit在这里要根据lib-flexible的规则来配制,如果您的设计稿是750px的,用75就刚刚好。
  33. plugins: [
  34. require("postcss-px2rem")({
  35. remUnit: 192,
  36. remPrecision: 5
  37. })
  38. ]
  39. }
  40. }
  41. }
  42. };