Working on netlify dev, not on actual deploy
See original GitHub issueDescribe 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:
- Run
git clone https://github.com/PH4NTOMiki/swyxkit.git - Navigate to the cloned repository
git branch debuggingVersions- Run
netlify dev - 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:
- Created 2 years ago
- Comments:10 (6 by maintainers)

Top Related StackOverflow Question
Esbuild source issue: https://github.com/evanw/esbuild/issues/1921
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…