From 440cfac5e6606549645dcc4edab2d09c20aabe5d Mon Sep 17 00:00:00 2001 From: jimin9038 Date: Mon, 12 Aug 2024 15:16:27 +0900 Subject: [PATCH] fix(fe): sentry config url (#1948) --- 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 cc268efcfb..281988715d 100644 --- a/apps/frontend/next.config.js +++ b/apps/frontend/next.config.js @@ -28,7 +28,7 @@ module.exports = withSentryConfig(withBundleAnalyzer(nextConfig), { silent: true, org: 'skkuding', project: process.env.SENTRY_PROJECT, - url: 'https://sentry.codedang.com', + sentryUrl: 'https://sentry.codedang.com', // For all available options, see: // https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/