question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Working on netlify dev, not on actual deploy

See original GitHub issue

Describe the bug

SvelteKit app when deployed to Netlify returns Dynamic require of "fs" is not supported and sometimes Cannot read property 'default' of undefined for routes that have gray-matter import in them, but the route only uses the text “part” of that library, not fs part of it so there shouldn’t be that error. The issue persists for node_bundler = esbuild and without it.

I think it has something to do with how you process node_modules.

logs:

Feb 23, 07:43:09 PM: 24d25a60 ERROR  Error: Dynamic require of "fs" is not supported
Feb 23, 07:43:09 PM: 24d25a60     at __require (file:///var/task/.netlify/functions-internal/render.js:28:9)
Feb 23, 07:43:09 PM: 24d25a60     at node_modules/gray-matter/index.js (file:///var/task/.netlify/functions-internal/render.js:10725:14)
Feb 23, 07:43:09 PM: 24d25a60     at __require2 (file:///var/task/.netlify/functions-internal/render.js:34:44)
Feb 23, 07:43:09 PM: 24d25a60     at .netlify/server/chunks/content-4d53413a.js (file:///var/task/.netlify/functions-internal/render.js:17141:37)
Feb 23, 07:43:09 PM: 24d25a60     at __init (file:///var/task/.netlify/functions-internal/render.js:31:50)
Feb 23, 07:43:09 PM: 24d25a60     at .netlify/server/entries/endpoints/api/listContent.json.js (file:///var/task/.netlify/functions-internal/render.js:17185:5)
Feb 23, 07:43:09 PM: 24d25a60     at __init (file:///var/task/.netlify/functions-internal/render.js:31:50)
Feb 23, 07:43:09 PM: 24d25a60     at file:///var/task/.netlify/functions-internal/render.js:26540:51
Feb 23, 07:43:09 PM: 24d25a60     at async resolve (file:///var/task/.netlify/functions-internal/render.js:26295:83)
Feb 23, 07:43:09 PM: 24d25a60     at async respond (file:///var/task/.netlify/functions-internal/render.js:26246:22)

To Reproduce

Steps to reproduce the behavior:

  1. Run git clone https://github.com/PH4NTOMiki/swyxkit.git
  2. Navigate to the cloned repository
  3. git branch debuggingVersions
  4. Run netlify dev
  5. it’s WORKING, but NOT when deployed

Configuration

  • If possible, please copy/paste below your netlify.toml.
# example netlify.toml
[build]
  command = "npm run build"
  publish = "build"

[functions]
  directory = "functions"
  node_bundler = "esbuild"
  external_node_modules = ["mdsvex"]

[build.environment]
  NODE_VERSION = "14"
  ## https://github.com/sveltejs/kit/issues/2687

[[headers]]
  ## https://answers.netlify.com/t/content-type-header-not-working-in-netlify-toml/7718
  for = "/*"
  [headers.values]
    X-Frame-Options = "DENY"
    X-XSS-Protection = "1; mode=block"
    Cache-Control = "public, max-age=4000" 
    # cache just over 1 hour for webpagetest to be happy
    X-Content-Type-Options = "nosniff"
    ## Content-Security-Policy = "default-src 'self'; script-src 'nonce-swyx'; img-src *"
  • Please enter the following command in a terminal and copy/paste its output:
npx envinfo --system --binaries --npmPackages netlify-cli --npmGlobalPackages netlify-cli

System: OS: Linux 5.13 Manjaro Linux CPU: (8) x64 Intel® Core™ i5-8265U CPU @ 1.60GHz Memory: 552.13 MB / 7.65 GB Container: Yes Shell: 5.1.12 - /bin/bash Binaries: Node: 17.2.0 - /usr/local/bin/node npm: 8.5.1 - /usr/bin/npm npmGlobalPackages: netlify-cli: 9.8.0

Issue Analytics

  • State:open
  • Created 2 years ago
  • Comments:10 (6 by maintainers)

github_iconTop GitHub Comments

1reaction
PH4NTOMikicommented, Feb 25, 2022
1reaction
sw-yxcommented, Feb 24, 2022

ah TIL this is due to Z-I-S-I. source issue here: https://github.com/sveltejs/kit/issues/4079#issuecomment-1049744531

i lack the knowledge to suggest a fix but happy to try out any changes as i was the source of the issue…

Read more comments on GitHub >

github_iconTop Results From Across the Web

Build troubleshooting tips - Netlify Docs
This article provides troubleshooting tips for failing builds in Netlify's build service. In case your build fails on Netlify, first make sure it...
Read more >
My app builds and works fine locally but not on Netlify - Support
Hey, So this is my first time deploying on netlify and I've just got a simple SPA with webpack. I've followed all the...
Read more >
[Support Guide] Frequently encountered problems during builds
1. First steps - ruling out the obvious ... In case your build fails on Netlify, first make sure it builds locally in...
Read more >
Site deploys overview - Netlify Docs
Understand how site deploys work, access information on a deploy's detail page, ... from branches that are not the site's main production branch....
Read more >
Branch deploy is not working at all - Netlify Support Forums
So if staging is a PR against main, then yes, Netlify will build both. There are settings available in the UI to change...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found