// 引入等比适配插件 const px2rem = require('postcss-px2rem') // 配置基本大小 const postcss = px2rem({ // 基准大小 baseSize,需要和rem.js中相同 remUnit: 16 }) // 使用等比适配插件 module.exports = { css: { loaderOptions: { postcss: { plugins: [ postcss ] } } }, publicPath: './', parallel:false, devServer: { proxy: { //配置跨域 "/api": { //url识别符 // target: "http://192.168.250.29:8888", // 后端本地地址 target: "https://mps.xlmalls.com/api/", // 正式 // target: "http://221.4.217.75:60000/tzdy", // 测试 changOrigin: true, //允许跨域 pathRewrite: { "^/api": "", }, }, "/bd": { //url识别符 target: "http://127.0.0.1", // target: "http://192.168.250.110", changOrigin: true, //允许跨域 pathRewrite: { "^/bd": "", }, }, }, }, }