-
Notifications
You must be signed in to change notification settings - Fork 206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
alert message during build "require function is used in a way in which dependencies cannot be statically extracted" #273
Comments
Hi @jbilcke-hf. Thanks for writing in. I believe that warning relates to this code which dynamically requires Is your project is using Webpack or Turbopack? Can you share any other details of you Next configuration? |
I am using Webpack, here is my project for reference: @jbilcke-hf/clapper (note: this is a work in progress so some things like the support for Replicate are not 100% finished yet) I've just tried to create a minimal Next project to try to reproduce the issue but I wasn’t able to (a bare Next project + Replicate module doesn't trigger this warning) Since this seems caused by a weirdness in my project, like a dependency trying to polyfill require(), I'm sorry for taking your time on this. This is probably not worth looking too much into. |
The node protocol is supported now in Webpack 5.92.0. I wonder what the upgrade curve is for Webpack in Next projects… it would be nice to remove the code... |
Hey, I'm experiencing this too in a nextjs project where I want to use replicate server-side. It's quite annoying! I've overridden the default console behaviour on local to avoid getting spammed during dev too much. When I have more time I might back and try to remove the replicate sdk in favour of using the api instead. My ssr configuration is a bit janky so it could be my fault. But if there's any ideas for a work-around to just suppress these alert messages then that would be amazing! |
Hi @danny-hunt. Sorry for all the noise. You should be able to suppress this by adding the following to your ignoreWarnings: [
+ {
+ module: /replicate/,
+ message: /require function is used in a way in which dependencies cannot be statically extracted/,
+ },
] |
@mattt Thanks so much! Worked a charm & I learned something new today 😄 |
Anyone using turborepo + bun combo also getting this? It's funny I don't get any issues when deploying my Next.js app to Vercel but to self host deploy it via coolify or trying to write a Dockerfile for it and I'm getting this error.
|
Am getting spammed with this in turborepo, how can I suppress the warnings? |
Hello, for your information I get this message when I use the library in a Next project (
replicate 0.30.2
withNext 14.2.3
orNext 14.2.4
- I haven't tested older combinations):I don't know exactly the consequences, my Next app seems to work just fine despite the scary "critical dependency" message, but you might still wanna check it out as other people might come across this too.
For a bit more context, I'm using a lot (90+) of other modules in the same project like langchain etc (I hope we will see a
@langchain/replicate
NPM module soon by the way) but none of them trigger this, so that's weird.I'm using replicate on server-side not client-side (ie. I'm using it for Next's API endpoints) so it runs in a Node environment.
The
tsconfig.json
is like this if that can help:The text was updated successfully, but these errors were encountered: