Skip to content

Commit ebdb859

Browse files
authored
chore: remove Sentry integration (#240)
1 parent a738b07 commit ebdb859

5 files changed

Lines changed: 0 additions & 393 deletions

File tree

CLAUDE.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -185,14 +185,6 @@ Lefthook is configured (`lefthook.yml`) to run Prettier on staged files before c
185185

186186
The project uses Bun's built-in test runner. Tests are located in `*.test.ts` files alongside the source code.
187187

188-
## Monitoring
189-
190-
Sentry is integrated for error tracking. Configuration requires:
191-
192-
- `PUBLIC_SENTRY_DSN` (public DSN)
193-
- `SENTRY_PROJECT` (project name)
194-
- `SENTRY_AUTH_TOKEN` (for source map uploads)
195-
196188
## Writing Style
197189

198190
### No Emojis

astro.config.mjs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ import remarkMdc from "remark-mdc";
1010
import { remarkMdcToMdx } from "./src/plugins/remark-mdc-to-mdx.ts";
1111
import { remarkMermaidAscii } from "./src/plugins/remark-mermaid-ascii.ts";
1212
import cloudflare from "@astrojs/cloudflare";
13-
import sentry from "@sentry/astro";
14-
1513
/**
1614
* Vite plugin that removes public/assets from the build output. These files
1715
* are served externally and would otherwise cause miniflare to reject the
@@ -36,13 +34,6 @@ export default defineConfig({
3634
output: "static",
3735
adapter: cloudflare(),
3836
integrations: [
39-
sentry({
40-
dsn: process.env.PUBLIC_SENTRY_DSN,
41-
sourceMapsUploadOptions: {
42-
project: process.env.SENTRY_PROJECT,
43-
authToken: process.env.SENTRY_AUTH_TOKEN,
44-
},
45-
}),
4637
mdx({
4738
syntaxHighlight: "shiki",
4839
shikiConfig: {

0 commit comments

Comments
 (0)