Skip to content
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

Unused (dev) dependencies cause standalone node_modules pollution #77656

Open
ardokirsipuu opened this issue Mar 31, 2025 · 0 comments
Open

Unused (dev) dependencies cause standalone node_modules pollution #77656

ardokirsipuu opened this issue Mar 31, 2025 · 0 comments
Labels
Output Related to the the output configuration option.

Comments

@ardokirsipuu
Copy link

Link to the code that reproduces this issue

https://github.com/ardokirsipuu/nextjs-standalone-node-modules

To Reproduce

  1. clone the repo
  2. run yarn
  3. run yarn build
  4. check the contents of .next\standalone\node_modules to find irrelevant (not needed for prod runtime) dependencies

Current vs. Expected behavior

Current behavior

When new (dev) dependencies are added, that are not used in the code, then the .next\standalone\node_modules folder is being polluted with additional files that are not needed for production runtime (e.g. esbuild, @esbuild/*, @rspack/* etc). See the screenshot below to see a diff of the file tree between before (HEAD~1) vs after (@nx/react is added):

Image

Most of the tree on the left side shows new stuff being added (with a little twist of @swc/helpers actually being moved from the root to be under next/node_modules/@swc/helpers 👀).

Expected behavior

No unused files are added to .next\standalone\node_modules for unused dependencies.

Provide environment information

Operating System:
  Platform: win32
  Arch: x64
  Version: Windows 11 Pro
  Available memory (MB): 65277
  Available CPU cores: 24
Binaries:
  Node: 22.14.0
  npm: 10.9.2
  Yarn: 4.8.1
  pnpm: N/A
Relevant Packages:
  next: 15.3.0-canary.26
  eslint-config-next: N/A
  react: 19.1.0
  react-dom: 19.1.0
  typescript: 5.8.2
Next.js Config:
  output: standalone

Which area(s) are affected? (Select all that apply)

Output

Which stage(s) are affected? (Select all that apply)

next build (local)

Additional context

Having next.config.ts with something like

  outputFileTracingExcludes: {
    "./**/*": [
      "node_modules/esbuild",
      "node_modules/@esbuild",
    ],
  },

would take care of these two excessive dependencies, but handling all those tens of dependencies manually like this would not be very feasible and would defeat the purpose of having the file tracing feature.

@github-actions github-actions bot added the Output Related to the the output configuration option. label Mar 31, 2025
@ardokirsipuu ardokirsipuu changed the title Unused dev dependencies cause standalone node_modules pollution Unused (dev) dependencies cause standalone node_modules pollution Mar 31, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Output Related to the the output configuration option.
Projects
None yet
Development

No branches or pull requests

1 participant