报错:Cannot find module ‘autoprefixer‘

vue3 -vite报错:Error: Loading PostCSS Plugin failed: Cannot find module 'autoprefixer'

第一步、解决:根目录上新建postcss.config.js

module.exports = {
  plugins: {
    'autoprefixer': {browsers: 'last 5 version'}
  }
}

第二步:package.json(仅用第二种先试下)

"browserslist": [
  "last 5 version",
  ">1%",
  "ie>=8"
],
"postcss": {
  "plugins": {
    "autoprefixer": {}
  }
}

你可能感兴趣的:(vue,前端,css,javascript)