Newer
Older
VueSharedPrinting / vue.config.js
hanfei on 26 Dec 2023 616 bytes 对接接口
// 引入等比适配插件
const px2rem = require('postcss-px2rem')

// 配置基本大小
const postcss = px2rem({
  // 基准大小 baseSize,需要和rem.js中相同
  remUnit: 16
})

// 使用等比适配插件
module.exports = {
  css: {
    loaderOptions: {
      postcss: {
        plugins: [
          postcss
        ]
      }
    }
  },
  devServer: {
    proxy: {
      //配置跨域
      "/api": { //url识别符
        target: "http://192.168.250.29:8888", // server地址
        changOrigin: true, //允许跨域
        pathRewrite: {
          "^/api": "",
        },
      },
    },
  },
}