vue3.0+vite 使用 postcss-pxtorem 实现移动自适应(px转rem)

  • 下载 postcss-pxtorem

npm i postcss-pxtorem -D

  • package.json同级目录创建postcss.config.js文件
module.exports = {
    plugins: {
        autoprefixer: {
            overrideBrowserslist: [
                "Android 4.1",
                "iOS 7.1",
                "Chrome > 31",
                "ff > 31",
                "ie >= 8",
                "last 10 versions", // 所有主流浏览器最近10版本用
            ],
            grid: true,
        },
        'postcss-pxtorem': {
            rootValue: 37.5,
            propList: ['*'],
            unitPrecision: 5
        }
    }
}

这里只实现了 pxrem,还要安装 amfe-flexible

npm i amfe-flexible -D

main.ts文件中 import 一下就好可以了

import ‘amfe-flexible/index.js’

:可能会出现下面情况
[vite] Internal server error: Loading PostCSS Plugin failed: Cannot find module 'autoprefixer'
在这里插入图片描述
这时候尝试安装 autoprefixer就可以了

npm i autoprefixer

你可能感兴趣的:(Vue)