const pxRem = require("postcss-pxtorem"); module.exports = { css:{ loaderOptions:{ postcss: { //selectorBlackList正则过滤,符合的class不进行rem转化 //单个的css语句需过滤的情况下,可以使用PX或Px单位 plugins:[pxRem({ autoprefixer:{}, rootValue: 75, propList: ["*"],// 需要做转化处理的属性,如`hight`、`width`、`margin`等,`*`表示全部 默认全部处理 selectorBlackList:[".ig-",".dp-"] })] } } }, lintOnSave: false, devServer: { proxy: { '/api': { // target: 'http://192.168.0.162:9000/',//PC的 // target: 'http://192.168.0.110:8080',//公司公用的 // target: 'http://192.168.0.243:9000/',//郑伟机器的 target: ' http://192.168.0.222:9000/',//redmi的 changeOrigin: true, pathRewrite: { '^/api': '', } } } }, // 输出文件目录 outputDir: 'D:\\wwwroot\\flyong\\hbuild\\GoAllOutTv\\build', publicPath:'./', };