From f800f1b663bf69b93646a741f4b6f0f922b65a45 Mon Sep 17 00:00:00 2001 From: Kenton Duprey Date: Tue, 2 Jul 2024 23:06:32 -0400 Subject: [PATCH] chore: Update next.config.js to set `silent` to `true` --- apps/frontend/next.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/frontend/next.config.js b/apps/frontend/next.config.js index 485d820a..34b88bc6 100644 --- a/apps/frontend/next.config.js +++ b/apps/frontend/next.config.js @@ -42,7 +42,7 @@ module.exports = withSentryConfig(module.exports, { project: "kentonduprey-site", // Only print logs for uploading source maps in CI - silent: !process.env.CI, + silent: true, // For all available options, see: // https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/