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版本不一致
在运行 成功了