diff options
| author | Dhravya Shah <[email protected]> | 2024-07-18 22:32:03 -0500 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2024-07-18 22:32:03 -0500 |
| commit | 31bd5fe2d112c5e99b1f48931e43a5b5344227e8 (patch) | |
| tree | 5a165d95ba557fb335c654eda798226128ebc003 /apps | |
| parent | attempt to deploy (diff) | |
| download | supermemory-31bd5fe2d112c5e99b1f48931e43a5b5344227e8.tar.xz supermemory-31bd5fe2d112c5e99b1f48931e43a5b5344227e8.zip | |
Disabled sentry for now because of unreasonably large bundle size
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/web/next.config.mjs | 69 | ||||
| -rw-r--r-- | apps/web/sentry.client.config.ts | 8 |
2 files changed, 37 insertions, 40 deletions
diff --git a/apps/web/next.config.mjs b/apps/web/next.config.mjs index 7e80d06d..c0001fa5 100644 --- a/apps/web/next.config.mjs +++ b/apps/web/next.config.mjs @@ -19,39 +19,42 @@ if (process.env.NODE_ENV === "development") { })(baseNextConfig); } -export default withSentryConfig(selectedCofig, { - // For all available options, see: - // https://github.com/getsentry/sentry-webpack-plugin#options - - org: "none-h00", - project: "javascript-nextjs", - // Only print logs for uploading source maps in CI - silent: !process.env.CI, - - // For all available options, see: - // https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/ - - // Upload a larger set of source maps for prettier stack traces (increases build time) - widenClientFileUpload: true, - - // Route browser requests to Sentry through a Next.js rewrite to circumvent ad-blockers. - // This can increase your server load as well as your hosting bill. - // Note: Check that the configured route will not match with your Next.js middleware, otherwise reporting of client- - // side errors will fail. - tunnelRoute: "/monitoring", - - // Hides source maps from generated client bundles - hideSourceMaps: true, - - // Automatically tree-shake Sentry logger statements to reduce bundle size - disableLogger: true, - - // Enables automatic instrumentation of Vercel Cron Monitors. (Does not yet work with App Router route handlers.) - // See the following for more information: - // https://docs.sentry.io/product/crons/ - // https://vercel.com/docs/cron-jobs - automaticVercelMonitors: true, -}); +export default selectedCofig; + +//! Disabled sentry for now because of unreasonably large bundle size +// export default withSentryConfig(selectedCofig, { +// // For all available options, see: +// // https://github.com/getsentry/sentry-webpack-plugin#options + +// org: "none-h00", +// project: "javascript-nextjs", +// // Only print logs for uploading source maps in CI +// silent: !process.env.CI, + +// // For all available options, see: +// // https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/ + +// // Upload a larger set of source maps for prettier stack traces (increases build time) +// widenClientFileUpload: true, + +// // Route browser requests to Sentry through a Next.js rewrite to circumvent ad-blockers. +// // This can increase your server load as well as your hosting bill. +// // Note: Check that the configured route will not match with your Next.js middleware, otherwise reporting of client- +// // side errors will fail. +// tunnelRoute: "/monitoring", + +// // Hides source maps from generated client bundles +// hideSourceMaps: true, + +// // Automatically tree-shake Sentry logger statements to reduce bundle size +// disableLogger: true, + +// // Enables automatic instrumentation of Vercel Cron Monitors. (Does not yet work with App Router route handlers.) +// // See the following for more information: +// // https://docs.sentry.io/product/crons/ +// // https://vercel.com/docs/cron-jobs +// automaticVercelMonitors: true, +// }); // we only need to use the utility during development so we can check NODE_ENV // (note: this check is recommended but completely optional) diff --git a/apps/web/sentry.client.config.ts b/apps/web/sentry.client.config.ts index b793a576..8ae9937e 100644 --- a/apps/web/sentry.client.config.ts +++ b/apps/web/sentry.client.config.ts @@ -20,11 +20,5 @@ Sentry.init({ replaysSessionSampleRate: 0.1, // You can remove this option if you're not planning to use the Sentry Session Replay feature: - integrations: [ - Sentry.replayIntegration({ - // Additional Replay configuration goes in here, for example: - maskAllText: true, - blockAllMedia: true, - }), - ], + integrations: [], }); |