首先要安装postcss
npm i postcss --save
在根目录新建一个postcss.config.js文件,配置如下
module.exports = {
plugins: {
autoprefixer: {},
cssnano: {}
}
}
然后在bebel.config.js中修改配置如下
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
],
plugins: [
[
"component",
{
"libraryName": "element-ui",
// "styleLibraryName": "theme-chalk",
style: false
}
]
]
}