問題:從碼雲上提前代碼時npm run dev 報錯
解決方法
在目錄外層新建一個postcss.config.js 放入以下代碼
module.exports = {
plugins: {
'autoprefixer': {browsers: 'last 5 version'}
}
}