Closed cpotey closed 7 months ago
The same problem. I spent a few hours, and I didn't understand what happened.
@sentry/nextjs@7.95.0 next@14.1.0 react@18.2.0
My first app uses Static Side Rendering (output: 'export'
), and the second app uses Server Side Rendering.
In the error log I see the reference to the sentry.server.config.ts
file and layout.tsx
.
pages:dev: at (rsc)/../../packages/sentry-config/src/sentry.server.config.ts (/app/apps/pages/.next/server/app/page.js:601:1)
pages:dev: at __webpack_require__ (/app/apps/pages/.next/server/webpack-runtime.js:33:42)
pages:dev: at eval (webpack-internal:///(rsc)/./sentry.server.config.ts:2:98)
pages:dev: at (rsc)/./sentry.server.config.ts (/app/apps/pages/.next/server/app/page.js:590:1)
pages:dev: at __webpack_require__ (/app/apps/pages/.next/server/webpack-runtime.js:33:42)
pages:dev: at eval (webpack-internal:///(rsc)/./src/app/layout.tsx:9:82)
Hi, which Next.js version are you on?
Also, would anybody be able to share a minimal reproduction example that runs into this? Thank you!
I'm on next js 14.1 and I have the same error when I perform a server action. It does seem to me Next using the cjs version of @sentry/react is the cause of the error as I find the following in the log
⨯ ../packages/next/node_modules/.pnpm/@sentry+react@7.99.0_react@18.2.0/node_modules/@sentry/react/cjs/profiler.js (34:40) @ Component
⨯ Class extends value undefined is not a constructor or null
This might be caused by a React Class Component being rendered in a Server Component, React Class Components only works in Client Components. Read more: https://nextjs.org/docs/messages/class-component-in-server-component
Hm, @alvis would you be able to provide a small reproduction repository?
@cpotey My company is experiencing the same issue but using a simplified version of the code you provided in a simple repro project doesn't cause it, so I think there might be more to cause it to occur. Not sure exactly what the offending pattern is in our codebase.
I'm experiencing this error as well. It happens in Next.js 14, only in dev mode, when some server action is triggered.
I have upgraded my project deps to the latest versions, and this problem has been resolved. Now I can't reproduce this(
"@sentry/nextjs": "^7.102.1",
"next": "^14.1.0",
@DenisBessa would you mind giving a few more details? We have E2E tests covering server actions and they are not running into this.
@lforst Hello. I've created a small reproduction repository. The error occurs when you click a button. https://github.com/mkizka/nextjs-serveractions-sentry
$ git clone https://github.com/mkizka/nextjs-serveractions-sentry
$ cd nextjs-serveractions-sentry
$ yarn
$ yarn dev
yarn run v1.22.19
$ next dev
▲ Next.js 14.2.0-canary.0
- Local: http://localhost:3000
✓ Ready in 1465ms
○ Compiling / ...
✓ Compiled / in 4.2s (1612 modules)
⨯ Class extends value undefined is not a constructor or null
This might be caused by a React Class Component being rendered in a Server Component, React Class Components only works in Client Components. Read more: https://nextjs.org/docs/messages/class-component-in-server-component
at __webpack_require__ (/home/ubuntu/workspace/nextjs-serveractions-sentry/.next/server/webpack-runtime.js:33:42)
at __webpack_require__ (/home/ubuntu/workspace/nextjs-serveractions-sentry/.next/server/webpack-runtime.js:33:42)
at __webpack_require__ (/home/ubuntu/workspace/nextjs-serveractions-sentry/.next/server/webpack-runtime.js:33:42)
at __webpack_require__ (/home/ubuntu/workspace/nextjs-serveractions-sentry/.next/server/webpack-runtime.js:33:42)
at eval (./app/action.ts:9:72)
at (action-browser)/./app/action.ts (/home/ubuntu/workspace/nextjs-serveractions-sentry/.next/server/app/page.js:430:1)
at Function.__webpack_require__ (/home/ubuntu/workspace/nextjs-serveractions-sentry/.next/server/webpack-runtime.js:33:42)
digest: "3939973888"
@mkizka Thanks for providing a repro example! It appears to be a dev mode issue. When I run a prod-build everything seems to work perfectly fine. We need to somehow fix this though. I don't have a quick fix unfortunately so please stay tuned!
Probably related to https://github.com/vercel/next.js/pull/61194, I was able to fix this issue in dev mode by adding manually in next config:
experimental: {
serverComponentsExternalPackages: ['@sentry/nextjs', '@sentry/node'],
}
Note by SDK author (@lforst): The above was a workaround for this issue that now has been fixed with version 7.106.1
of the Sentry Next.js SDK. The workaround is harmful to your cold-start times and we highly recommend removing it after upgrading!
Don't mind me, Just want to shout out @meienberger for saving my day because this error is so cryptic, I'd spend hours, if not days debugging it.
I just realized the severity of this. Sorry for the inconvenience. I originally underestimated the impact. We will fix this asap.
Alternatively, I figured out the configuration below saves my days too. Seems like by forcing next to analyze barrel files, it ignores a problematic file down the route. @lforst hope it may help
{
experimental: {
optimizePackageImports: [
'@sentry/core',
'@sentry/nextjs',
'@sentry/react'
]
}
}
Hi everybody, we just released version 7.106.1
of the SDK which should address this issue. Please try it out and feel free to let us know if the fix worked (or not). Cheers!
Hi everybody, we just released version
7.106.1
of the SDK which should address this issue. Please try it out and feel free to let us know if the fix worked (or not). Cheers!
Thanks @lforst, Can confirm 7.106.1
works without problems on Next.js 14.1.3 without applying the fix in this thread.
Also, do you happen to know if it's a good idea to just leave '@sentry/nextjs', '@sentry/node'
in next external packages config?
Next.js team seems to have removed it to avoid a 350ms delay on cold boot, but I'm not sure if this is worth having the package broken again in the future.
@avarayr Thank you very much for confirming!
I highly recommend not putting @sentry/nextjs
and @sentry/node
in the external packages config. It has a non-trivial effect on cold-starts and may break certain SDK features in the future. We actually made an effort in collaboration with Vercel to remove the SDK from being external by default in Next.js: https://github.com/vercel/next.js/pull/61194
It is really important for us moving forward because this was necessary for us to have directives like "use client"
in the SDK.
experimental: { serverComponentsExternalPackages: ['@sentry/nextjs', '@sentry/node'], }
I can confirm this workaround fixed it. I almost stopped reading at this point but decided to check the latest comments and saw that the correct fix is actually:
npm install @sentry/nextjs@latest
@lforst Thanks to the Sentry team for fixing this.
@nbolton right. Thanks for the heads up!
@meienberger Thanks again for providing the workaround. I edited your comment to point people towards upgrading the SDK. I hope that's ok!
I'm using @sentry/nextjs v8.17.0
and I see this issue sometimes in dev mode.
@RisingGeek if you can attribute this to the SDK and if you could provide a reproduction example that would be amazing. (if so, please do it in a new isse) Thanks!
It's hard to reproduce as it is not happening always. But, this is the error that I'm getting
I think we need a reproduction example we can check out locally to properly troubleshoot this.
Nevermin, this was an environment issue, I had NODE_PATH
in environment, removing that from .env
worked
experimental: { serverComponentsExternalPackages: ['@sentry/nextjs', '@sentry/node'], }
This also fixed the below error I encountered.
An error occurred while loading instrumentation hook: Class extends value undefined is not a constructor or null
We are also getting this error after adding the "--turbo" command to our dev builds.
"@sentry/nextjs": "8.28.0",
"next": "14.2.7"
When we spin up the local dev server we get the same error:
Class extends value undefined is not a constructor or null. his might be caused by a React Class Component being rendered in a Server Component, React Class Components only works in Client Components.
at [project]/node_modules/@sentry/react/build/esm/errorboundary.js [app-rsc] (ecmascript)
Hope this helps in any way.
Is there an existing issue for this?
How do you use Sentry?
Sentry Saas (sentry.io)
Which SDK are you using?
@sentry/nextjs
SDK Version
7.89.0
Framework Version
7.89.0
Link to Sentry event
https://the-key.sentry.io/issues/4917806857/?project=4506501905252352&query=is%3Aunresolved&referrer=issue-stream&statsPeriod=14d&stream_index=0
SDK Setup
Steps to Reproduce
In my Next v14.1.0 app, I loaded a page, when a component seems to change inside the page, it caused an error from Sentry:
I have worked out the code that is the problem is within a server-only function which is loaded on every page to fetch user data from my API, this function is also where I am setting the user for Sentry.
If I comment the Sentry parts out, everything works as expected.
This error doesn't occur on
v7.88.0
of@sentry/nextjs
, so am stuck on this version for now. I use this function in several places within my monorepo, so am unable to upgrade Sentry until I can find a solution here.Expected Result
No errors in the console to occur
Actual Result