-
Notifications
You must be signed in to change notification settings - Fork 87
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
Build fails - Cannot find module 'konva' #571
Comments
@justincavery hey! to start, before asking you for a reproduction, could you try: setting your and/or setting your node_bundler in your netlify.toml to esbuild? see https://docs.netlify.com/configure-builds/file-based-configuration/#functions |
though just looked again, this isn't a runtime error... |
is |
@lindsaylevine hi! No it's not a dependency of ours. Builds just started failing for us and no changes had been made to package.json I managed to get the functions section building after adding a further 9 devDependencies that the build process claimed it needed.. but then we got: :32 PM: ────────────────────────────────────────────────────────────────
8:50:32 PM: 6. Deploy site
8:50:32 PM: ────────────────────────────────────────────────────────────────
8:50:32 PM:
8:50:32 PM: Starting to deploy site from 'out'
8:50:35 PM: Creating deploy tree
8:50:35 PM: Creating deploy upload records
8:50:35 PM: 49 new files to upload
8:50:35 PM: 2 new functions to upload
8:50:44 PM: Request must be smaller than 69905067 bytes for the CreateFunction operation
8:50:47 PM: Request must be smaller than 69905067 bytes for the CreateFunction operation
8:50:50 PM: Request must be smaller than 69905067 bytes for the CreateFunction operation
8:50:52 PM: Request must be smaller than 69905067 bytes for the CreateFunction operation
8:50:55 PM: Request must be smaller than 69905067 bytes for the CreateFunction operation
8:50:59 PM: Request must be smaller than 69905067 bytes for the CreateFunction operation
8:51:05 PM: Request must be smaller than 69905067 bytes for the CreateFunction operation
8:51:13 PM: Request must be smaller than 69905067 bytes for the CreateFunction operation
8:51:19 PM: Request must be smaller than 69905067 bytes for the CreateFunction operation
8:51:34 PM: Request must be smaller than 69905067 bytes for the CreateFunction operation
8:52:03 PM: Request must be smaller than 69905067 bytes for the CreateFunction operation
8:52:03 PM: Failed to upload file: next_migrate
8:52:03 PM: Site deploy was successfully initiated
8:52:04 PM: Execution cancelled
8:52:04 PM: Error running command: Command was cancelled
8:52:04 PM: Failing build: Failed to build site
8:52:04 PM: Finished processing build request in 6m52.729375946s The only thing that has changed with this build is it is the first time we are leveraging next.js server side rendering ( |
The functions section of the build was failing until I added the following dev dependencies (we don't use any of them...): @react-three/fiber": "^7.0.6",
"konva": "^8.1.1",
"react-konva": "^17.0.2-5",
"react-native": "^0.64.2",
"react-zdog": "^1.0.11",
"three": "^0.131.1",
"zdog": "^1.1.2" |
have you tried the suggestions i made so far? aka esbuild/experimental-serverless-trace? (without the dependencies you add, obviously) @quagliero |
@lindsaylevine we already had the experimental-serverless-trace in place. The esbuild node_bundler threw up some new errors so I just moved the server side function into client side (for now) so we can release the feature. I will update this thread shortly with the errors when using the node_bundler esbuild. |
@lindsaylevine the following error occurs using node_bundler esbuild: ────────────────────────────────────────────────────────────────
4. Functions bundling
────────────────────────────────────────────────────────────────
Packaging Functions from netlify/functions directory:
- next_image/next_image.js
- next_migrate/next_migrate.js
> .netlify/plugins/node_modules/sharp/lib/output.js:4:22: error: No loader is configured for ".node" files: .netlify/plugins/node_modules/sharp/build/Release/sharp.node
4 │ const sharp = require('../build/Release/sharp.node');
╵ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
❯ Failed to bundle functions with selected bundler (fallback used):
- next_image.zip
❯ The following Node.js modules use dynamic expressions to include files:
- next
- @ampproject/toolbox-optimizer
Because files included with dynamic expressions aren't bundled with your serverless functions by default,
this may result in an error when invoking a function. To resolve this error, you can mark these Node.js
modules as external in the [functions] section of your `netlify.toml` configuration file:
[functions]
external_node_modules = ["next", "@ampproject/toolbox-optimizer"] (I added the external_node_modules line) |
@quagliero ok. last question would be to try target serverless with esbuild. but, at this point, it seems like we're definitely going to need a repo that reproduces your issue! |
@lindsaylevine Looks like a similar issue on svelte sveltejs/kit#1547 |
I was able to solve it by adding # netlify.toml
[functions]
# Specifies `esbuild` for functions bundling
node_bundler = "esbuild"
external_node_modules = ["next", "@ampproject/toolbox-optimizer", "sharp"] While using Thanks for the help! Please feel free to close this issue, cc @justincavery. |
Thanks @quagliero and @lindsaylevine for getting this sorted. |
Describe the bug
Build is failing when using the netlfiy NextJS plugin.
To Reproduce
Deploy and we get the following message.
Expected behavior
Expect this to build as per usual.
Versions
The text was updated successfully, but these errors were encountered: