Skip to content

Commit

Permalink
Merge pull request #133 from COW-dev/feature#95
Browse files Browse the repository at this point in the history
  • Loading branch information
keemsebin authored Mar 24, 2024
2 parents d8e6242 + fbd1c51 commit 6c77996
Show file tree
Hide file tree
Showing 10 changed files with 933 additions and 38 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,8 @@ yarn-error.log*
*.tsbuildinfo
next-env.d.ts

.env
# Sentry Config File
.sentryclirc

.env

19 changes: 19 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,22 @@ const nextConfig = {
};

module.exports = nextConfig;

const { withSentryConfig } = require('@sentry/nextjs');

module.exports = withSentryConfig(
module.exports,
{
silent: true,
org: 'ddingdong-ng',
project: 'ddingdong-fe',
},
{
widenClientFileUpload: true,
transpileClientSDK: true,
tunnelRoute: '/monitoring',
hideSourceMaps: true,
disableLogger: true,
automaticVercelMonitors: true,
},
);
Loading

0 comments on commit 6c77996

Please sign in to comment.