From f426ca7f23f07da6db6ab334f51e1a525f1d6d1f Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Sat, 17 Feb 2024 20:36:27 +0300 Subject: [PATCH] apps/web: disable disable webpack for build --- apps/web/next.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/web/next.config.js b/apps/web/next.config.js index e67ef05..e5c57a6 100644 --- a/apps/web/next.config.js +++ b/apps/web/next.config.js @@ -69,6 +69,9 @@ module.exports = withSentryConfig({ ]; }, sentry: { + disableClientWebpackPlugin: true, + disableServerWebpackPlugin: true, + hideSourceMaps: true, tunnelRoute: '/track-error', }, serverRuntimeConfig: serverRuntimeConfigSchema.parse(env),