-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Slow build-times and Webpack serialization performance warnings when using @sentry/nextjs
#15100
Comments
Hello @scobbe, thank you for filing this. Could you please provide a reproduction repo? I tried setting up a new nextjs project using |
same issue here with same env , however do not have reproduction repo sadly |
Same issue here. Only happened when I added sentry in and the build (running npm run dev) now takes a LOT longer. Versions:
|
We still need a reproduction for this to investigate further. Thanks! |
I finally reproduced it! https://github.com/MonstraG/sentry-webpack-strings-bug
|
Just to clarify -- is the |
@markedwards as pointed out in #15100 (comment), it is very likely not a problem, not contributing to build times in any significant way, and will therefore likely not be fixed (also because I wouldn't know how). It will very likely implicitly get fixed with Trubopack. |
Hello, we have rule against using export const onRequestError = async (...args: [any, any, any]) => {
if (process.env.NODE_ENV === "production") {
captureRequestError(...args);
}
}; Actual types are |
I mean, you could just not type it? Or type it as unknown? |
No, because the sentry's function /does/ use these types. If 3 unknowns are used, it produces:
If I remove the types, it's implicitly I could also probably come up with something like |
The recommendations don't help, disabling the Sentry plugin in Next config causes spamming errors to the console. But I think I found a solution: completely replace the
import type { NextConfig } from "next"
import { type SentryBuildOptions, withSentryConfig } from "@sentry/nextjs"
const isProd = process.env.NODE_ENV === "production"
const nextConfig: NextConfig = {
webpack: (config, { webpack, isServer }) => {
// see the lib/sentry-dev.ts file to see what's going on here and why.
if (!isProd) {
config.resolve = {
...config.resolve,
alias: {
...config.resolve.alias,
"@sentry/nextjs": "@/lib/sentry-dev",
},
}
}
return config
},
}
const sentryConfig: SentryBuildOptions = {
}
const composedConfig = isProd
? withSentryConfig(nextConfig, sentryConfig)
: nextConfig
export default composedConfig
// this file contains fake implementation of all used functions from sentry
// and they will be used in local development
// @sentry/nextjs has a big problem with local development
// build time (including HMR) increases about 2-3 times
// see https://github.com/getsentry/sentry-javascript/issues/15100
// Just disabling the sentry plugin in the Next config
// breaks the build completely when trying to import sentry package
// with webpack.resolve.alias, this file will be imported
// instead of the "@sentry/nextjs" package
// set true for forward Sentry calls to console
const dump = false
const wrapper =
(name: string, fn: typeof console.log) =>
(...args) => {
if (dump) fn(`SentryDevFake.${name}`, ...args)
}
export const init = wrapper("init", console.info)
export const captureException = wrapper("captureException", console.error)
export const setUser = wrapper("setUser", console.info)
export const browserTracingIntegration = wrapper("browserTracingIntegration", console.info)
export const browserProfilingIntegration = wrapper("browserProfilingIntegration", console.info)
export const httpClientIntegration = wrapper("httpClientIntegration", console.info)
export const startSpan = (options, callback) => {
wrapper("startSpan", console.info)(options)
return callback()
}
export const withServerActionInstrumentation = (name, options, next) => {
wrapper("withServerActionInstrumentation", console.info)(name, options)
return next()
} (don't forget to mock all used functions from Sentry that you use in the project) Yes, it's not pretty and hacky, but waiting tens of seconds to rebuild a simple changes is even worse |
@mxseev not calling |
What helped me to cut build time from 1:44 to 0:36 is commenting addition of SentryConfig altogether (in development env) in next.config.ts. I use bun. So it is time for |
Is there an existing issue for this?
How do you use Sentry?
Sentry Saas (sentry.io)
Which SDK are you using?
@sentry/nestjs
SDK Version
8.50.0
Framework Version
React 19.0.0, Next 15.1.4, Node 22.9.0
Link to Sentry event
No response
Reproduction Example/SDK Setup
Description
When adding Sentry configuration to
next.config.ts
usingwithSentryConfig
, I encounter the following warning during the build process:Is this a known issue? Are there any recommendations for addressing this warning, such as additional configuration options or workarounds?
Thank you!
Steps to Reproduce
Start with a minimal
next.config.ts
file:Update the file to include Sentry's configuration using
withSentryConfig
:Run the build process.
Expected Result
The build completes without warnings or errors.
Actual Result
The following warning appears during the build process:
The text was updated successfully, but these errors were encountered: