fix: reconfigure sentry for the frontend

This commit is contained in:
swve 2024-01-04 23:40:31 +01:00
parent becf0a5c2f
commit 98d2d7cf83
12 changed files with 203 additions and 139 deletions

View file

@ -3,4 +3,23 @@ const nextConfig = {
reactStrictMode: false,
}
module.exports = nextConfig
const { withSentryConfig } = require("@sentry/nextjs");
const SentryWebpackPluginOptions = {
// 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,
// Transpiles SDK to be compatible with IE11 (increases bundle size)
transpileClientSDK: true,
// Routes browser requests to Sentry through a Next.js rewrite to circumvent ad-blockers (increases server load)
tunnelRoute: "/monitoring",
// Hides source maps from generated client bundles
hideSourceMaps: true,
}
module.exports = withSentryConfig(nextConfig, SentryWebpackPluginOptions);