File tree Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Expand file tree Collapse file tree 1 file changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -31,8 +31,6 @@ export interface Config {
3131 authCookieName : string ,
3232 sslKey : string ,
3333 sslCert : string ,
34- sentryDsn : string ,
35- sentryTracesSampleRate : number ,
3634}
3735
3836// server-side storage expiration - defaults to 20 minutes
@@ -67,8 +65,6 @@ const schema = joi.object({
6765 authCookieName : joi . string ( ) . optional ( ) ,
6866 sslKey : joi . string ( ) . optional ( ) ,
6967 sslCert : joi . string ( ) . optional ( ) ,
70- sentryDsn : joi . string ( ) . optional ( ) ,
71- sentryTracesSampleRate : joi . number ( ) . optional ( ) ,
7268} ) ;
7369
7470// Build config
@@ -94,8 +90,6 @@ const config = {
9490 authCookieName : process . env . AUTH_COOKIE_NAME ,
9591 sslKey : process . env . SSL_KEY ,
9692 sslCert : process . env . SSL_CERT ,
97- sentryDsn : process . env . SENTRY_DDSN ,
98- sentryTracesSampleRate : process . env . SENTRY_TRACE_SAMPLE_RATE ,
9993} ;
10094
10195// Validate config
You can’t perform that action at this time.
0 commit comments