Vue打包出现Browserslist: caniuse-lite is outdated
Vue打包出现Browserslist: caniuse-lite is outdated的解决办法
·
项目打包的时候,出现提示:
Browserslist: caniuse-lite is outdated. Please run:
npx browserslist@latest --update-db
Why you should do it regularly: https://github.com/browserslist/browserslist#browsers-data-updating
⠙ Building legacy bundle for production...Browserslist: caniuse-lite is outdated. Please run:
npx browserslist@latest --update-db
执行npx browserslist@latest --update-db
,无效,而且package.json
中没有browserslist
这个依赖。
按照网上的另一种办法,删除node_modules
中的browserslist
和caniuse-lite
两个包,重新安装,也无效,因为package.json
并没有引入这两个包,所以更新或重新安装也没有用。
在yarn.lock
中找了一下依赖关系,发现是@vue/cli-service
依赖了browserslist
的包,更新@vue/cli
,解决~
npm install -g @vue/cli
更多推荐
已为社区贡献6条内容
所有评论(0)