須要有專門的postcss.config.js放置在根目錄,內容是css
1 module.exports = { 2 plugins: [ 3 require('autoprefixer')({ 4 browsers: ['last 5 versions'] 5 }) 6 ] 7 }