Skip to content

Commit

Permalink
fix: nextjs config sentry
Browse files Browse the repository at this point in the history
  • Loading branch information
sriramveeraghanta committed Apr 2, 2024
1 parent bd470f7 commit 204e4a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion space/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const nextConfig = {
output: "standalone",
};

if (parseInt(process.env.NEXT_PUBLIC_ENABLE_SENTRY || "0"), 10) {
if (parseInt(process.env.NEXT_PUBLIC_ENABLE_SENTRY || "0", 10)) {
module.exports = withSentryConfig(nextConfig,
{ silent: true, authToken: process.env.SENTRY_AUTH_TOKEN },
{ hideSourceMaps: true }
Expand Down
2 changes: 1 addition & 1 deletion web/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const nextConfig = {
output: "standalone",
};

if (parseInt(process.env.NEXT_PUBLIC_ENABLE_SENTRY || "0"), 10) {
if (parseInt(process.env.NEXT_PUBLIC_ENABLE_SENTRY || "0", 10)) {
module.exports = withSentryConfig(nextConfig,
{ silent: true, authToken: process.env.SENTRY_AUTH_TOKEN },
{ hideSourceMaps: true }
Expand Down

0 comments on commit 204e4a8

Please sign in to comment.