From c7822e32359c7477f01e5dd557039d08d5d67b27 Mon Sep 17 00:00:00 2001 From: yujialong <479214531@qq.com> Date: Thu, 4 Nov 2021 15:21:39 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BC=95=E5=85=A5=E7=AD=89=E6=AF=94=E9=80=82?= =?UTF-8?q?=E9=85=8D=E6=8F=92=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vue.config.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/vue.config.js b/vue.config.js index e9d6080..d845b94 100644 --- a/vue.config.js +++ b/vue.config.js @@ -1,3 +1,12 @@ +// 引入等比适配插件 +const px2rem = require("postcss-px2rem"); + +// 配置基本大小 +const postcss = px2rem({ + // 基准大小 baseSize,需要和rem.js中相同 + remUnit: 16 +}); + const Setting = require('./src/setting.env') // 使用等比适配插件 @@ -5,6 +14,11 @@ module.exports = { lintOnSave: true, css: { loaderOptions: { + postcss: { + plugins: [ + postcss + ] + }, sass: { prependData: `@import "@/styles/var.scss";` },