Skip to content

Commit 1a41f78

Browse files
chore: depreciate sentry
1 parent f6325fa commit 1a41f78

File tree

7 files changed

+4
-1583
lines changed

7 files changed

+4
-1583
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,4 @@ pnpm format fix linting issues
2424
```
2525
APP_ENV="__APP_ENV__"
2626
PUBLIC_GA4_ID="__GA4_ID__"
27-
PUBLIC_SENTRY_DSN="__SENTRY_DSN__"
28-
SENTRY_AUTH_TOKEN="__SENTRY_AUTH__"
2927
```

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
"prepare": "husky"
1414
},
1515
"dependencies": {
16-
"@sentry/sveltekit": "^10.24.0",
1716
"gray-matter": "^4.0.3",
1817
"mdsvex": "^0.12.6"
1918
},

pnpm-lock.yaml

Lines changed: 2 additions & 1525 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/hooks.client.ts

Lines changed: 0 additions & 23 deletions
This file was deleted.

src/hooks.server.ts

Lines changed: 0 additions & 21 deletions
This file was deleted.

svelte.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const config = {
1919

2020
csp: {
2121
directives: {
22-
'script-src': ['self', 'https://www.googletagmanager.com', 'https://*.ingest.us.sentry.io']
22+
'script-src': ['self', 'https://www.googletagmanager.com']
2323
}
2424
}
2525
}

vite.config.ts

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { sentrySvelteKit } from '@sentry/sveltekit';
21
import { sveltekit } from '@sveltejs/kit/vite';
32
import { defineConfig } from 'vite';
43

@@ -17,13 +16,5 @@ export default defineConfig({
1716
}
1817
},
1918

20-
plugins: [
21-
sentrySvelteKit({
22-
sourceMapsUploadOptions: {
23-
org: 'tukkr',
24-
project: 'tukkr'
25-
}
26-
}),
27-
sveltekit()
28-
]
19+
plugins: [sveltekit()]
2920
});

0 commit comments

Comments
 (0)