alpha
Login
or
Join now
dunkirk.sh
/
smokie
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
chore: ignore sentry in dev
author
Kieran Klukas
date
1 year ago
(May 29, 2025, 10:09 PM -0400)
commit
1425e9b2
1425e9b212bd36129cb23b1f2ccb44f94c27c8f8
parent
39287f5b
39287f5b3d5bc75aeb008461db77631b053cec14
+8
-5
1 changed file
Expand all
Collapse all
Unified
Split
src
index.ts
+8
-5
src/index.ts
Reviewed
···
29
29
);
30
30
}
31
31
32
32
-
Sentry.init({
33
33
-
dsn: process.env.SENTRY_DSN,
34
34
-
environment,
35
35
-
release: version,
36
36
-
});
32
32
+
if (process.env.NODE_ENV === "production") {
33
33
+
Sentry.init({
34
34
+
dsn: process.env.SENTRY_DSN,
35
35
+
environment,
36
36
+
release: version,
37
37
+
sampleRate: 0.1,
38
38
+
});
39
39
+
}
37
40
38
41
console.log(
39
42
`----------------------------------\n${name} Server\n----------------------------------\n`,