Skip to content

Commit

Permalink
(stabilize) node env locks
Browse files Browse the repository at this point in the history
  • Loading branch information
danh91 committed Nov 27, 2023
1 parent 3a1b3ba commit 8698392
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 14 deletions.
4 changes: 2 additions & 2 deletions apps/dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"pino": "^7.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"request-ip": "^2.1.3",
"request-ip": "^3.3.0",
"rxjs": "^7.3.0",
"sass": "^1.37.5"
},
Expand All @@ -54,4 +54,4 @@
"tsconfig": "*",
"typescript": "5.3.2"
}
}
}
13 changes: 13 additions & 0 deletions apps/dashboard/sentry.edge.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// sentry.edge.config.js or sentry.edge.config.ts

import * as Sentry from "@sentry/nextjs";
import getConfig from 'next/config';


const { publicRuntimeConfig } = getConfig();
const SENTRY_DSN = publicRuntimeConfig.SENTRY_DSN;

Sentry.init({
dsn: SENTRY_DSN,
tracesSampleRate: 1.0,
});
16 changes: 4 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8698392

Please sign in to comment.