Browse Source

fix sentry config

Abhinav 3 years ago
parent
commit
2042b1ac39
1 changed files with 6 additions and 7 deletions
  1. 6 7
      next.config.js

+ 6 - 7
next.config.js

@@ -60,11 +60,10 @@ module.exports = (phase) =>
                         return config;
                     },
                 })
-            ),
-            {
-                release: GIT_SHA,
-                dryRun:
-                    phase === PHASE_DEVELOPMENT_SERVER || !IS_SENTRY_ENABLED,
-            }
-        )
+            )
+        ),
+        {
+            release: GIT_SHA,
+            dryRun: phase === PHASE_DEVELOPMENT_SERVER || !IS_SENTRY_ENABLED,
+        }
     );