vhr前端项目启动失败报错,居然是版本问题!

发布时间:2024年01月12日

vhr前端项目启动问题解决,
环境node 16.6本来下载得最新得node18 根本启动不起来vhr项目,毕竟这个项目好久了已经,只能降低版本到16

npm run serve 启动报错:

404s will fallback to /index.html
11% building 15/19 modules 4 active D:\workspace\vhr-master\vuehr\node_modules\webpack-dev-server\client\utils\getCurrentScriptSource.jsBrowserslist: caniuse-lite is outdated. Please run next command npm update
98% after emitting CopyPlugin
提示更新版本
npm更新版本 npm update

再次报错:找不到node-sass 使用淘宝镜像 安装
Syntax Error: Error: Cannot find module ‘node-sass’
解决方案:
在这里插入图片描述
npm install -g cnpm --registry=https://registry.npm.taobao.org
npm fund
cnpm install node-sass

再次启动报错:
Syntax Error: Error: Node Sass version 9.0.0 is incompatible with ^4.0.0.
在这里插入图片描述
node-sass版本和node版本不一致
在这里插入图片描述
在运行 成功了

文章来源:https://blog.csdn.net/qq_39306234/article/details/135546059
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。