mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
fix: reconfigure sentry for the frontend
This commit is contained in:
parent
becf0a5c2f
commit
98d2d7cf83
12 changed files with 203 additions and 139 deletions
|
|
@ -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);
|
||||
Loading…
Add table
Add a link
Reference in a new issue