···2222 // For all available options, see:
2323 // https://github.com/getsentry/sentry-webpack-plugin#options
24242525- // Suppresses source map uploading logs during build
2626- silent: true,
2525+ // Only print logs for uploading source maps in CI
2626+ // Set to `true` to suppress logs
2727+ silent: !process.env.CI,
27282829 org: "openstatus",
2930 project: "openstatus",
···3233 // For all available options, see:
3334 // https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/
34353636+ // Pass the auth token
3737+ authToken: process.env.SENTRY_AUTH_TOKEN,
3838+3539 // Upload a larger set of source maps for prettier stack traces (increases build time)
3640 widenClientFileUpload: true,
37413842 // Transpiles SDK to be compatible with IE11 (increases bundle size)
3943 transpileClientSDK: false,
4040-4141- // Hides source maps from generated client bundles
4242- hideSourceMaps: true,
43444445 // Automatically tree-shake Sentry logger statements to reduce bundle size
4546 disableLogger: true,
+1
apps/status-page/.env.example
···1010DATABASE_AUTH_TOKEN=any-token
11111212NEXT_PUBLIC_SENTRY_DSN=''
1313+SENTRY_AUTH_TOKEN=''
13141415# used for contributions to fill the monitor tracker with data
1516NOOP_UPTIME="true"
+6-5
apps/status-page/next.config.ts
···5757 // For all available options, see:
5858 // https://github.com/getsentry/sentry-webpack-plugin#options
59596060- // Suppresses source map uploading logs during build
6161- silent: true,
6060+ // Only print logs for uploading source maps in CI
6161+ // Set to `true` to suppress logs
6262+ silent: !process.env.CI,
62636364 org: "openstatus",
6465 project: "openstatus",
···6768 // For all available options, see:
6869 // https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/
69707171+ // Pass the auth token
7272+ authToken: process.env.SENTRY_AUTH_TOKEN,
7373+7074 // Upload a larger set of source maps for prettier stack traces (increases build time)
7175 widenClientFileUpload: true,
72767377 // Transpiles SDK to be compatible with IE11 (increases bundle size)
7478 transpileClientSDK: false,
7575-7676- // Hides source maps from generated client bundles
7777- hideSourceMaps: true,
78797980 // Automatically tree-shake Sentry logger statements to reduce bundle size
8081 disableLogger: true,