This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

chore: ignore sentry in dev

+8 -5
+8 -5
src/index.ts
··· 29 29 ); 30 30 } 31 31 32 - Sentry.init({ 33 - dsn: process.env.SENTRY_DSN, 34 - environment, 35 - release: version, 36 - }); 32 + if (process.env.NODE_ENV === "production") { 33 + Sentry.init({ 34 + dsn: process.env.SENTRY_DSN, 35 + environment, 36 + release: version, 37 + sampleRate: 0.1, 38 + }); 39 + } 37 40 38 41 console.log( 39 42 `----------------------------------\n${name} Server\n----------------------------------\n`,