-
Notifications
You must be signed in to change notification settings - Fork 8.1k
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
chore: Add ability to disable Sentry source maps #17699
Conversation
E2E results are ready! |
apps/web/next.config.js
Outdated
@@ -221,8 +221,10 @@ const nextConfig = { | |||
images: { | |||
unoptimized: true, | |||
}, | |||
productionBrowserSourceMaps: false, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
productionBrowserSourceMaps: false, | |
productionBrowserSourceMaps: process.env.SENTRY_DISABLE_CLIENT_SOURCE_MAPS === "0", |
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 2 Skipped Deployments
|
Graphite Automations"Add foundation team as reviewer" took an action on this PR • (11/22/24)1 reviewer was added to this PR based on Keith Williams's automation. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Happy with this configurability
What does this PR do?
Unfortunately as we saw with #11928, we are not able to add any more app router routes to the app without suffering OOM issues while building on Vercel. To try and avoid this blocking issue, we are going to provide a mechanism to not upload source maps
Mandatory Tasks (DO NOT REMOVE)