[乐意黎原创]npm run dev 时抛'cross-env' is not recognized as an internal or external command的解决方法

通过 Vue init webpack-simple 创建工程中,  运行 npm run dev 时抛以下错误,

 cross-env NODE_ENV=development webpack-dev-server --open --hot

'cross-env' is not recognized as an internal or external command,
operable program or batch file.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] dev: `cross-env NODE_ENV=development webpack-dev-server --open --hot`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] dev script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\Aerchi\AppData\Roaming\npm-cache\_logs\2020-03-24T18_46_51_349Z-debug.log

解决方法: 

webpack打包报错,原因是windows不支持 cross-env,安装模块即可:

npm install -g  cross-env

cnpm install -g  cross-env
--------------------------------
First, run:

rm -rf node_modules
rm package-lock.json yarn.lock
npm cache clear --force

Then run the command

npm install cross-env

npm install 

and then you can also run

npm run dev
发布了429 篇原创文章 · 获赞 410 · 访问量 920万+

猜你喜欢

转载自blog.csdn.net/aerchi/article/details/105086193