新建vue项目时的webpack大坑:DeprecationWarning: Unhandled promise rejections are deprecated. precated.
报错信息:想要启动项目输入npm run dev后的报错信息DeprecationWarning: Unhandled promise rejections are deprecated.In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero
·
报错信息:
想要启动项目输入npm run dev
后的报错信息
DeprecationWarning: Unhandled promise rejections are deprecated.
In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
报错原因:
新建的vue项目,由于less-loader版本(在package.json
里查看)过高,webpack的版本和loader的版本不匹配,我的webpack版本是3.6.0,新建项目时直接安装css-loader、less-loader、style-loader都是默认安装的最新版本的loader,因此我们需要降低loader的版本。
解决办法:
1、先卸载原有的loader:
npm uninstall less-loader
2、安装低版本的loader:
npm install less-loader@4.1.0 --save
太坑了。
更多推荐
已为社区贡献10条内容
所有评论(0)