From 72fbcdf6c94a9fdf1de830099ff84405f22ff0f2 Mon Sep 17 00:00:00 2001 From: SKINMAKER Date: Sat, 24 Jun 2023 11:39:34 +0900 Subject: [PATCH] chore: fix workflow on check (#577) * deps: add @sentry/cli * deps: remove @sentry/cli * chore: set dry run on ci * chore: remove dryRun --- next.config.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index 5a51ea9..e6ee49c 100644 --- a/next.config.js +++ b/next.config.js @@ -38,6 +38,10 @@ const NextConfig = { permanent: true } ] - } + }, + sentry: process.env.CI ? { + disableServerWebpackPlugin: true, + disableClientWebpackPlugin: true, + } : {} } module.exports = withSentryConfig(withPWA(NextConfig)) \ No newline at end of file