From 0974c41c182ee16d21f5821be11d694595998803 Mon Sep 17 00:00:00 2001 From: mkue Date: Sun, 12 Jan 2025 21:22:44 +0100 Subject: [PATCH] Website: Specify SENTRY_AUTH_TOKEN in next.config.js --- website/next.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/next.config.js b/website/next.config.js index 03dd0e1f4..190b1a343 100644 --- a/website/next.config.js +++ b/website/next.config.js @@ -14,6 +14,8 @@ module.exports = withSentryConfig(module.exports, { org: 'social-income', project: 'website', + authToken: process.env.SENTRY_AUTH_TOKEN, + // Only print logs for uploading source maps in CI silent: !process.env.CI,