Skip to content

Commit

Permalink
Revert "Revert "feat: sentry 설정 (#103)" (#105)"
Browse files Browse the repository at this point in the history
This reverts commit f234c51.
  • Loading branch information
newminkyung authored Jan 13, 2025
1 parent f234c51 commit e545e44
Show file tree
Hide file tree
Showing 9 changed files with 14,031 additions and 8,495 deletions.
9 changes: 8 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
/** @type {import('next').NextConfig} */
import { withSentryConfig } from '@sentry/nextjs';

const nextConfig = {
reactStrictMode: true,
compiler: {
styledComponents: true,
},
};

export default nextConfig;
export default withSentryConfig(nextConfig, {
org: 'depromeet',
project: 'depromeet',
authToken: process.env.SENTRY_AUTH_TOKEN,
silent: false,
});
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
},
"devDependencies": {
"@chromatic-com/storybook": "^1.3.3",
"@sentry/nextjs": "^8.47.0",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-interactions": "^8.0.9",
"@storybook/addon-links": "^8.0.9",
Expand Down
Loading

0 comments on commit e545e44

Please sign in to comment.