File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -185,14 +185,6 @@ Lefthook is configured (`lefthook.yml`) to run Prettier on staged files before c
185185
186186The 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
Original file line number Diff line number Diff line change @@ -10,8 +10,6 @@ import remarkMdc from "remark-mdc";
1010import { remarkMdcToMdx } from "./src/plugins/remark-mdc-to-mdx.ts" ;
1111import { remarkMermaidAscii } from "./src/plugins/remark-mermaid-ascii.ts" ;
1212import 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 : {
You can’t perform that action at this time.
0 commit comments