当前位置: 首页 > 工具软件 > Autoprefixer > 使用案例 >

报错:Cannot find module ‘autoprefixer‘

怀齐智
2023-12-01

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": {}
  }
}

 类似资料: