Revert "feat(observability): add sentry monitoring"

This reverts commit e21f2502a5.
This commit is contained in:
2026-06-23 11:51:23 +08:00
parent e21f2502a5
commit c9d75b6fe6
8 changed files with 22 additions and 1400 deletions
-3
View File
@@ -56,6 +56,3 @@ implementation_plan.md
# PWA build artifacts (regenerated each build, hashes change)
public/sw.js
public/workbox-*.js
# Sentry Config File
.env.sentry-build-plugin
+1 -13
View File
@@ -1,4 +1,3 @@
import { withSentryConfig } from "@sentry/nextjs";
import type { NextConfig } from "next";
import { withSerwist } from "@serwist/turbopack";
@@ -37,15 +36,4 @@ const nextConfig: NextConfig = {
},
};
export default withSentryConfig(withSerwist(nextConfig), {
org: process.env.SENTRY_ORG ?? "shenzhen-banlv-zhidao-technolo",
project: process.env.SENTRY_PROJECT ?? "javascript-nextjs",
silent: !process.env.CI,
widenClientFileUpload: true,
webpack: {
automaticVercelMonitors: true,
treeshake: {
removeDebugLogging: true,
},
},
});
export default withSerwist(nextConfig);
-1
View File
@@ -19,7 +19,6 @@
},
"dependencies": {
"@fingerprintjs/fingerprintjs": "^5.2.0",
"@sentry/nextjs": "^10.59.0",
"@stripe/react-stripe-js": "^6.6.0",
"@stripe/stripe-js": "^9.8.0",
"@xstate/react": "^5",
+21 -1290
View File
File diff suppressed because it is too large Load Diff
-24
View File
@@ -1,24 +0,0 @@
// This file configures the initialization of Sentry for edge features (middleware, edge routes, and so on).
// The config you add here will be used whenever one of the edge features is loaded.
// Note that this config is unrelated to the Vercel Edge Runtime and is also required when running locally.
// https://docs.sentry.io/platforms/javascript/guides/nextjs/
import * as Sentry from "@sentry/nextjs";
const dsn = process.env.SENTRY_DSN ?? process.env.NEXT_PUBLIC_SENTRY_DSN;
if (dsn) {
Sentry.init({
dsn,
tracesSampleRate: Number(
process.env.SENTRY_TRACES_SAMPLE_RATE ??
(process.env.NODE_ENV === "production" ? "0.1" : "1"),
),
enableLogs: true,
// Chat content and auth data are sensitive; do not send default PII.
sendDefaultPii: false,
});
}
-23
View File
@@ -1,23 +0,0 @@
// This file configures the initialization of Sentry on the server.
// The config you add here will be used whenever the server handles a request.
// https://docs.sentry.io/platforms/javascript/guides/nextjs/
import * as Sentry from "@sentry/nextjs";
const dsn = process.env.SENTRY_DSN ?? process.env.NEXT_PUBLIC_SENTRY_DSN;
if (dsn) {
Sentry.init({
dsn,
tracesSampleRate: Number(
process.env.SENTRY_TRACES_SAMPLE_RATE ??
(process.env.NODE_ENV === "production" ? "0.1" : "1"),
),
enableLogs: true,
// Chat content and auth data are sensitive; do not send default PII.
sendDefaultPii: false,
});
}
-33
View File
@@ -1,33 +0,0 @@
// This file configures the initialization of Sentry on the client.
// The added config here will be used whenever a users loads a page in their browser.
// https://docs.sentry.io/platforms/javascript/guides/nextjs/
import * as Sentry from "@sentry/nextjs";
const dsn = process.env.NEXT_PUBLIC_SENTRY_DSN;
if (dsn) {
Sentry.init({
dsn,
integrations: [Sentry.replayIntegration()],
tracesSampleRate: Number(
process.env.NEXT_PUBLIC_SENTRY_TRACES_SAMPLE_RATE ??
(process.env.NODE_ENV === "production" ? "0.1" : "1"),
),
enableLogs: true,
replaysSessionSampleRate: Number(
process.env.NEXT_PUBLIC_SENTRY_REPLAY_SAMPLE_RATE ?? "0.05",
),
replaysOnErrorSampleRate: Number(
process.env.NEXT_PUBLIC_SENTRY_REPLAY_ERROR_SAMPLE_RATE ?? "1",
),
// Chat content and auth data are sensitive; do not send default PII.
sendDefaultPii: false,
});
}
export const onRouterTransitionStart = Sentry.captureRouterTransitionStart;
-13
View File
@@ -1,13 +0,0 @@
import * as Sentry from "@sentry/nextjs";
export async function register() {
if (process.env.NEXT_RUNTIME === "nodejs") {
await import("../sentry.server.config");
}
if (process.env.NEXT_RUNTIME === "edge") {
await import("../sentry.edge.config");
}
}
export const onRequestError = Sentry.captureRequestError;