当运行gatsby develop
时,就在gatsby new
之后,使用此处教程中提供的配置-https://www.gatsbyjs.com/docs/tutorial/part-1/,我得到此错误
模块构建失败(来自../../my-first-gatsby-sitenode_modules/gatsby/dist/utils/babel-loader.js):错误:找不到模块“..\my-first-gatsby-site\node_modules\gatsby\dist\utils\babel-loader.js”
我尝试过的解决方案:
1.删除node_modules,package-lock => npm install / yarn。
1.在node_modules/gatsby
中运行npm install
。
- npm -g --保存babel-loader。
如果您遇到错误并能够解决它,请提供帮助。TIA。
1条答案
按热度按时间y3bcpkx11#
在
node_modules/gatsby
中运行npm install
。npm install
必须在项目的根目录下运行,而不是在node_modules
内部运行。删除node_modules,package-lock => npm install / yarn。
你应该只选择npm或yarn,而不是两者都选。
尝试以下操作:
npm install --save gatsby-cli
npm audit fix
(在项目的根目录中)。node_modules
并在项目的根目录下重新安装依赖项:npm install