需要有专门的postcss.config.js放置在根目录,内容是
1 module.exports = { 2 plugins: [ 3 require('autoprefixer')({ 4 browsers: ['last 5 versions'] 5 }) 6 ] 7 }