From 3710fe42efecc0b6858a0692084f736fc3b5fe69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Ta=C3=AFeb?= Date: Tue, 21 Jan 2025 11:33:46 +0100 Subject: [PATCH] chore: delete source maps after upload --- next.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/next.config.js b/next.config.js index 9c156cb8..b8e90022 100644 --- a/next.config.js +++ b/next.config.js @@ -112,4 +112,7 @@ module.exports = withSentryConfig(module.exports, { // https://docs.sentry.io/product/crons/ // https://vercel.com/docs/cron-jobs automaticVercelMonitors: true, + sourcemaps: { + deleteSourcemapsAfterUpload: true, + }, });