Replies: 2 comments
-
Hi! It currently fails on |
Beta Was this translation helpful? Give feedback.
0 replies
-
Great, thanks for the tip
…On Tue, Oct 26, 2021 at 5:15 AM Lennart ***@***.***> wrote:
Hi!
It currently fails on locomotive-scroll, see
locomotivemtl/locomotive-scroll#13
<locomotivemtl/locomotive-scroll#13> for help.
More general help for this error:
https://www.gatsbyjs.com/docs/debugging-html-builds/
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#33669 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AE4OVT7TMIUA7GGP6SY6MCDUI2LWRANCNFSM5GWCKSGA>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone, I am having issues building my gatsby project, My project works fine with gatsby develop, however fails in gatsby build. I have worked on this project for a month and will be forever grateful for any help.
My initial gatsby build fail: failed with node-fetch error.
What I have tried: gatsby-node.js
exports.onCreateWebpackConfig = ({ stage, loaders, actions }) => {
if (stage === "build-html" || stage === "develop-html") {
actions.setWebpackConfig({
module: {
rules: [
{
test: /firebase/,
use: loaders.null(),
},
],
},
})
}
}
My current gatsby build fail:
![gatsbyBuildFail](https://user-images.githubusercontent.com/20507343/138758971-b4b313e3-efb4-47c7-90c2-899757edee23.png)
My system info:
![gatsbyBuildError2](https://user-images.githubusercontent.com/20507343/138759311-0543fd70-1804-46ec-aaf3-8fb4d935f19c.png)
My dependencies
Beta Was this translation helpful? Give feedback.
All reactions