美文网首页
vueCli 配置样式前缀autoprefixer

vueCli 配置样式前缀autoprefixer

作者: 抽疯的稻草绳 | 来源:发表于2021-01-28 07:22 被阅读0次
image.png
1、安装postcss和autoprefixer
npm install postcss
npm install autoprefixer
2.在package.json文件修改 browserslist
  "browserslist": [
    "> 1%",
    "last 3 versions",
    "not ie <= 8",
    "chrome >= 14",
    "safari >= 3",
    "ios >= 8",
    "android >= 4.0"
  ]
3.在根目录新建postcss.config.js文件
module.exports = {
    plugins: {
        autoprefixer: {}
    }
}
5.重新启动
image.png

相关文章

网友评论

      本文标题:vueCli 配置样式前缀autoprefixer

      本文链接:https://www.haomeiwen.com/subject/ukxyzktx.html