数据报表
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
2.1 KiB

3 years ago
  1. module.exports = {
  2. css: {
  3. loaderOptions: {
  4. postcss: {
  5. plugins: [
  6. require("postcss-px-to-viewport")({
  7. unitToConvert: "px", // 要转化的单位
  8. viewportWidth: 750, // UI设计稿的宽度
  9. unitPrecision: 3, // 转换后的精度,即小数点位数
  10. propList: [
  11. "*"
  12. ], // 指定转换的css属性的单位,*代表全部css属性的单位都进行转换
  13. viewportUnit: "vw", // 指定需要转换成的视窗单位,默认vw
  14. fontViewportUnit: "vw", // 指定字体需要转换成的视窗单位,默认vw
  15. landscapeUnit: 'vh', // 横屏时使用的单位
  16. landscapeWidth: 667, // 横屏时使用的视口宽度
  17. selectorBlackList: [], // 指定不转换为视窗单位的类名
  18. minPixelValue: 1, // 默认值1,小于或等于1px则不进行转换
  19. mediaQuery: false, // 是否在媒体查询的css代码中也进行转换,默认false
  20. replace: true, // 是否转换后直接更换属性值
  21. // landscape: false, // 是否处理横屏情况
  22. })
  23. ]
  24. }
  25. },
  26. },
  27. lintOnSave: false,
  28. // devServer: {
  29. // proxy: { //配置跨域
  30. // '/admin': {
  31. // target: 'http://test.qingweilai888.xyz', //这里后台的地址模拟的;应该填写你们真实的后台接口
  32. // changOrigin: true, //允许跨域
  33. // pathRewrite: {
  34. // /* 重写路径,当我们在浏览器中看到请求的地址为:http://localhost:8080/api/core/getData/userInfo 时
  35. // 实际上访问的地址是:http://121.121.67.254:8185/core/getData/userInfo,因为重写了 /api
  36. // */
  37. // '^/admin': 'admin'
  38. // }
  39. // },
  40. // }
  41. // },
  42. }