在项目根目录新建postcss.config.js文件,并对postcss进行配置:
postcss.config.js
postcss
module.exports = { plugins: [ require('autoprefixer')//自动添加css前缀 ] };