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

Unable to build project, Cannot read properties of null (reading 'useContext') #63123

Closed
zlace opened this issue Mar 11, 2024 · 31 comments
Closed
Labels
bug Issue was opened via the bug report template. locked Module Resolution Module resolution (CJS / ESM, module resolving).

Comments

@zlace
Copy link

zlace commented Mar 11, 2024

Link to the code that reproduces this issue

https://github.com/zlace/next-build-error

To Reproduce

pnpm dev works, pnpm build fails

https://stackblitz.com/edit/github-cmffvl?file=README.md

Current vs. Expected behavior

Should build successfully

Provide environment information

Operating System:
  Platform: darwin
  Arch: arm64
  Version: Darwin Kernel Version 23.1.0: Thu Sep 14 23:08:13 PDT 2023; root:xnu-10002.40.63.505.1~3/RELEASE_ARM64_T8112
Binaries:
  Node: 18.19.1
  npm: 10.2.4
  Yarn: 1.22.21
  pnpm: 8.12.1
Relevant Packages:
  next: 14.1.3
  eslint-config-next: 14.1.1
  react: 18.2.0
  react-dom: 18.2.0
  typescript: 5.4.2
Next.js Config:
  output: N/A

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

Module resolution (CJS / ESM, module resolving)

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

next build (local), Vercel (Deployed)

Additional context

No response

@zlace zlace added the bug Issue was opened via the bug report template. label Mar 11, 2024
@github-actions github-actions bot added the Module Resolution Module resolution (CJS / ESM, module resolving). label Mar 11, 2024
@stavros-k
Copy link

Might be related with #57277, which was closed due to no re-pro link.

@batazor
Copy link

batazor commented Mar 12, 2024

Suddenly I started catching this error too

Example pipeline - https://gitlab.com/shortlink-org/shortlink/-/jobs/6368837674
Repository: https://github.com/shortlink-org/shortlink/tree/main/boundaries/ui/nx-monorepo/packages/next

I've tried leaving 1 blank page, tried different versions of nx/next/etc, checked that the peer dependencies are correct, deleted the cache, and upgraded the NodeJS version to 21.7 - but nothing worked.

@collinversluis
Copy link

I am having the same issue here

@poorvasingh04
Copy link

poorvasingh04 commented Mar 17, 2024

Looked at the repo https://github.com/zlace/next-build-error.
I added previous externals in the webpack config. Change next.config.mjs to this

/** @type {import('next').NextConfig} */
const nextConfig = {
  webpack: (config) => {
    return {
      ...config,
      externals: [...config.externals, "pino-pretty", "encoding"],
    };
  },
};

export default nextConfig;

@Matts
Copy link

Matts commented Apr 24, 2024

Same kind of issue here, although mine is happening in dev. seems to be coming from serverside. NextJS 14.2.3 with --turbo

Warning: Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
1. You might have mismatching versions of React and the renderer (such as React DOM)
2. You might be breaking the Rules of Hooks
3. You might have more than one copy of React in the same app
See https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem.
 ⨯ TypeError: Cannot read properties of null (reading 'useContext')
    at usePathname (/Users/panda/Documents/Application/frontend/.next/server/chunks/ssr/node_modules_d26df3._.js:4791:238)
    at ErrorBoundary (/Users/panda/Documents/Application/frontend/.next/server/chunks/ssr/node_modules_d26df3._.js:5101:227)
digest: "3330820784"
Warning: Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
1. You might have mismatching versions of React and the renderer (such as React DOM)
2. You might be breaking the Rules of Hooks
3. You might have more than one copy of React in the same app
See https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem.
TypeError: Cannot read properties of null (reading 'useContext')
    at t.useContext (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:162241)
    at usePathname (/Users/panda/Documents/Application/frontend/.next/server/chunks/ssr/node_modules_d26df3._.js:4791:238)
    at ErrorBoundary (/Users/panda/Documents/Application/frontend/.next/server/chunks/ssr/node_modules_d26df3._.js:5101:227)
    at au (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:10446)
    at /Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:15122
    at aw (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:16908)
    at a_ (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:49776)
    at ab (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:11808)
    at /Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:16871
    at aw (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:16908)
    at aw (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:46505)
    at a_ (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:49776)
    at ab (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:11808)
    at /Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:16871
    at aw (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:16908)
    at a_ (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:49776)
    at /Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:58612
    at /Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:59270
    at aN (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:59278)
    at Timeout._onTimeout (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:6939)
    at listOnTimeout (node:internal/timers:573:17)
    at process.processTimers (node:internal/timers:514:7)
 ⨯ TypeError: Cannot read properties of null (reading 'useContext')
    at t.useContext (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:162241)
    at usePathname (/Users/panda/Documents/Application/frontend/.next/server/chunks/ssr/node_modules_d26df3._.js:4791:238)
    at ErrorBoundary (/Users/panda/Documents/Application/frontend/.next/server/chunks/ssr/node_modules_d26df3._.js:5101:227)
    at au (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:10446)
    at /Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:15122
    at aw (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:16908)
    at a_ (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:49776)
    at ab (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:11808)
    at /Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:16871
    at aw (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:16908)
    at aw (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:46505)
    at a_ (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:49776)
    at ab (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:11808)
    at /Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:16871
    at aw (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:16908)
    at a_ (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:49776)
    at /Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:58612
    at /Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:59270
    at aN (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:59278)
    at Timeout._onTimeout (/Users/panda/Documents/Application/frontend/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:6939)
    at listOnTimeout (node:internal/timers:573:17)
    at process.processTimers (node:internal/timers:514:7) {
  page: '/backoffice/leads'
}
 GET /backoffice/leads 500 in 514ms

@osdiab
Copy link

osdiab commented Apr 26, 2024

I get this error in dev all the time on dev server with Next 14.2.0 with --turbo, never on build on production. refreshing often fixes it but once it stops working I need to restart the dev server.

Here is the call stack:

t.useContext

file:///Users/omardiab/code/breeze/monorepo/node_modules/.pnpm/next@14.3.0-canary.25_@babel+core@7.23.7_react-dom@18.2.0_react@18.2.0/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js (35:164822)
useContext

node_modules/.pnpm/next@14.3.0-canary.25_@babel+core@7.23.7_react-dom@18.2.0_react@18.2.0/node_modules/next/dist/src/client/components/navigation.ts (84:10)
ErrorBoundary

node_modules/.pnpm/next@14.3.0-canary.25_@babel+core@7.23.7_react-dom@18.2.0_react@18.2.0/node_modules/next/dist/src/client/components/error-boundary.tsx (172:23)
ac

file:///Users/omardiab/code/breeze/monorepo/node_modules/.pnpm/next@14.3.0-canary.25_@babel+core@7.23.7_react-dom@18.2.0_react@18.2.0/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js (35:10478)
<unknown>

file:///Users/omardiab/code/breeze/monorepo/node_modules/.pnpm/next@14.3.0-canary.25_@babel+core@7.23.7_react-dom@18.2.0_react@18.2.0/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js (35:15152)
ak

file:///Users/omardiab/code/breeze/monorepo/node_modules/.pnpm/next@14.3.0-canary.25_@babel+core@7.23.7_react-dom@18.2.0_react@18.2.0/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js (35:16938)
aC

file:///Users/omardiab/code/breeze/monorepo/node_modules/.pnpm/next@14.3.0-canary.25_@babel+core@7.23.7_react-dom@18.2.0_react@18.2.0/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js (35:49758)
aS

file:///Users/omardiab/code/breeze/monorepo/node_modules/.pnpm/next@14.3.0-canary.25_@babel+core@7.23.7_react-dom@18.2.0_react@18.2.0/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js (35:11840)
<unknown>

file:///Users/omardiab/code/breeze/monorepo/node_modules/.pnpm/next@14.3.0-canary.25_@babel+core@7.23.7_react-dom@18.2.0_react@18.2.0/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js (35:16901)
ak

file:///Users/omardiab/code/breeze/monorepo/node_modules/.pnpm/next@14.3.0-canary.25_@babel+core@7.23.7_react-dom@18.2.0_react@18.2.0/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js (35:16938)
ak

file:///Users/omardiab/code/breeze/monorepo/node_modules/.pnpm/next@14.3.0-canary.25_@babel+core@7.23.7_react-dom@18.2.0_react@18.2.0/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js (35:46487)
aC

file:///Users/omardiab/code/breeze/monorepo/node_modules/.pnpm/next@14.3.0-canary.25_@babel+core@7.23.7_react-dom@18.2.0_react@18.2.0/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js (35:49758)
aS

file:///Users/omardiab/code/breeze/monorepo/node_modules/.pnpm/next@14.3.0-canary.25_@babel+core@7.23.7_react-dom@18.2.0_react@18.2.0/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js (35:11840)
<unknown>

file:///Users/omardiab/code/breeze/monorepo/node_modules/.pnpm/next@14.3.0-canary.25_@babel+core@7.23.7_react-dom@18.2.0_react@18.2.0/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js (35:16901)
ak

file:///Users/omardiab/code/breeze/monorepo/node_modules/.pnpm/next@14.3.0-canary.25_@babel+core@7.23.7_react-dom@18.2.0_react@18.2.0/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js (35:16938)
aC

file:///Users/omardiab/code/breeze/monorepo/node_modules/.pnpm/next@14.3.0-canary.25_@babel+core@7.23.7_react-dom@18.2.0_react@18.2.0/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js (35:49758)
<unknown>

file:///Users/omardiab/code/breeze/monorepo/node_modules/.pnpm/next@14.3.0-canary.25_@babel+core@7.23.7_react-dom@18.2.0_react@18.2.0/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js (35:58594)
<unknown>

file:///Users/omardiab/code/breeze/monorepo/node_modules/.pnpm/next@14.3.0-canary.25_@babel+core@7.23.7_react-dom@18.2.0_react@18.2.0/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js (35:59252)
aA

file:///Users/omardiab/code/breeze/monorepo/node_modules/.pnpm/next@14.3.0-canary.25_@babel+core@7.23.7_react-dom@18.2.0_react@18.2.0/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js (35:59260)
Timeout._onTimeout

file:///Users/omardiab/code/breeze/monorepo/node_modules/.pnpm/next@14.3.0-canary.25_@babel+core@7.23.7_react-dom@18.2.0_react@18.2.0/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js (35:6971)

@marlier
Copy link
Contributor

marlier commented May 13, 2024

Ran into this today. Upon investigation discovered that react and react-dom@18.3.1 had been installed, instead of 18.2.0. Reverting to 18.2.0 made the error go away.

Obviously no promises, but if anyone else is running into this it might be worth checking.

@osdiab
Copy link

osdiab commented May 14, 2024

My project does still use 18.2.0 and I experience it often so I don't think that's it, at least in my case..

@telephant
Copy link

check the enviroment: NODE_ENV, it should be production when the next build

and I fixed it by set NODE_ENV to production

@webniac2022
Copy link

I have the same issue in development mode, using NextJS 14.2.3 with --turbo. No idea what is causing it.

@hufftheweevil
Copy link

I have the same issue in development mode, using NextJS 14.2.3 with --turbo. No idea what is causing it.

Ditto. Perhaps this should be in a separate issue, since the OP is referring to build and not dev. But curious that it's happening both places.

For me, it happens most frequently when I try type in a direct path to a page. In other words, not clicking through the UI to get to a specific page. What I usually do then is go to the root and navigate via the UI. Pain.

@Matts
Copy link

Matts commented May 17, 2024 via email

@stabildev
Copy link

stabildev commented May 25, 2024

I am having the same issue in dev mode

Can't use turbopack in my project currently.

image

Edit: I'm using bun, but don't think that makes a difference

@john-subba
Copy link

This issue is only comes with --turbo flag. When i don't use turbo-pack i don't face the issue. Seems like the turbo pack has issues with other packages.

My versions:
next@14.1.4
react@18.2.0
react@18.2.0

@kimjong95
Copy link

The same issue happens with my projects that don't use turbo.

Occurs with a custom development server, > "dev": .env.development.local npm run dev-server
and also occurs with npx next dev. > npx next dev

I'm currently using both routers because I'm switching the service from pageRouter to AppRouter.

스크린샷 2024-05-30 09 44 06

My error is

  • This is not a problem when you use next/router or next/navigation to access other routers. - O
  • This is not a problem when you access the path to the page router directly to the url in your browser. - O
  • Problems occur when accessing the route to the app router directly to the url in the browser. - X
  • Problems occur when accessing routes that do not match the router. - X

my version

  • node: 20.9.0
  • next: 14.2.4
  • react: 18.2.0
  • react-dom: 18.2.0

@kimjong95
Copy link

I solved it.

// next.config.js
...
   config.resolve.alias = {
        ...config.resolve.alias,
-        react: path.resolve('./node_modules/react'),
        'styled-components': path.resolve('./node_modules/styled-components'),
      };

We used alias to unify modules' dependencies while using npm link to use react of current project. we set to an alias for react to ./node_modules/react.

Seems to work after deleting the alias.

May I know why is this occurring only in dev server?

@hufftheweevil
Copy link

I don't have any alias' in my next config, but I do have a path set in my jsconfig.json

{
  "compilerOptions": {
    "target": "es5",
    "lib": ["dom", "dom.iterable", "esnext"],
    "allowJs": true,
    "skipLibCheck": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "noEmit": true,
    "incremental": true,
    "esModuleInterop": true,
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "jsx": "preserve",
    "plugins": [
      {
        "name": "next"
      }
    ],
    "paths": {
      "@/*": ["./src/*"]
    }
  },
  "include": ["**/*.js", "**/*.jsx", "src/**/*", "tailwind.config.js"],
  "exclude": ["node_modules"]
}

Could that be related?

@imprisonedmind
Copy link

Can confirm it happens to me as soon as I build on v14.2.0 anything lower works fine.
any page.tsx that has useContext fails with Cannot read properties of null (reading 'useContext')

"next": "14.2.0",
"react": "^18",
"react-dom": "^18",

@Xavier-IV
Copy link

Facing this and been scratching my head for hours.

What seems to work is to run the build with experimental compile mode.

$ npx next build --experimental-build-mode compile

Related comments/issues regarding this flag: #46544 (comment)

Extra info:

    "next": "^14.2.3",
    "react": "^18",
    "react-dom": "^18",

I can confirm this run well on my local and production in Vercel. I'm using dynamic rendering anyway since its more of a "CMS" rather than static blog, so this seems fitting in my case.

@jvitormelo
Copy link

I still have this problem only in dev mode (14.2.3).

This happens on some pages of my application at random times.

I will update Next it to 14.2.4 to see if fixes it

image

@john-subba
Copy link

john-subba commented Jun 19, 2024

I still have this problem only in dev mode (14.2.3).

This happens on some pages of my application at random times.

I will update Next it to 14.2.4 to see if fixes it

image

have u tried removing the turbo flag if ure using turbo? if you are not using turbo then this issue will haunt us forever. 😁

@jvitormelo
Copy link

I still have this problem only in dev mode (14.2.3).
This happens on some pages of my application at random times.
I will update Next it to 14.2.4 to see if fixes it

have u tried removing the turbo flag if ure using turbo? if you are not using turbo then this issue will haunt us forever. 😁

If I remove turbo the app is so slow that it is better to get random crashes lol

@karlhorky
Copy link
Contributor

karlhorky commented Jun 25, 2024

For us, this happened when using @mdx-js/react in our project along with Yarn v1 Workspaces and nohoist (leading to multiple versions of react in various node_modules folders):

@john-subba
Copy link

I still have this problem only in dev mode (14.2.3).
This happens on some pages of my application at random times.
I will update Next it to 14.2.4 to see if fixes it

have u tried removing the turbo flag if ure using turbo? if you are not using turbo then this issue will haunt us forever. 😁

If I remove turbo the app is so slow that it is better to get random crashes lol

hahaha yeah man without turbo compile time is so slow.

@nikxsol
Copy link

nikxsol commented Jul 6, 2024

I'm facing the same issue

Uncaught TypeError: Cannot read properties of null (reading 'useContext')
    at t.useContext (file:///Users/mario/Documents/GitHub/blah/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:162241)
    at usePathname (file:///Users/mario/Documents/GitHub/blahapps/web/.next/server/chunks/ssr/08b5e_next_dist_esm_1c713e._.js:3834:238)
    at ErrorBoundary 

I can reproduce it. Changing the authOptions for next-auth while application is running in dev mode triggers the same error everytime.
I always restart the server to fix the problem, It's extreamly annoying.

@hufftheweevil
Copy link

Hopefully that will help put someone on the right track to solve it. However, I am not using next-auth, so it's not limited to just that. But it clearly has something to do with changing some code while in dev mode.

@hufftheweevil
Copy link

Also: sometimes it happens when opening a link to a different page of the same project in a new tab.

@abriginets
Copy link

abriginets commented Aug 11, 2024

I was able to fix this in my project! So I'm using next-seo and it's JSON+LD components and the issue was that I forgot adding useAppDir to <BreadcrumbJsonLd /> after migrating to app dir.

The error behavior and message are completely counter-intuitive though. Pages worked fine, all components rendered and page looked OK, yet NextJS was returning 500 Internal Server Error in both development and production. Debugging this was as simple as removing certain components from the tree.

@hilmyveradin
Copy link

I'm facing the same issue

Uncaught TypeError: Cannot read properties of null (reading 'useContext')
    at t.useContext (file:///Users/mario/Documents/GitHub/blah/node_modules/next/dist/compiled/next-server/app-page.runtime.dev.js:35:162241)
    at usePathname (file:///Users/mario/Documents/GitHub/blahapps/web/.next/server/chunks/ssr/08b5e_next_dist_esm_1c713e._.js:3834:238)
    at ErrorBoundary 

I can reproduce it. Changing the authOptions for next-auth while application is running in dev mode triggers the same error everytime. I always restart the server to fix the problem, It's extreamly annoying.

I had the exact same issue and this solved it! Thank you

@huozhi
Copy link
Member

huozhi commented Sep 4, 2024

Reagrding to the original issue, it's erroring because it drops the default webpack config externals and this comment is the right fix. Closing this issue as this general react error could cause by various root cause.

Please open a new issue with reproduction of your case, we'd love to help investigate the specific root cause 🙏

@huozhi huozhi closed this as completed Sep 4, 2024
Copy link
Contributor

This closed issue has been automatically locked because it had no new activity for 2 weeks. If you are running into a similar issue, please create a new issue with the steps to reproduce. Thank you.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Sep 19, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Issue was opened via the bug report template. locked Module Resolution Module resolution (CJS / ESM, module resolving).
Projects
None yet
Development

No branches or pull requests