@faultfixer/nextjs
v1.0.0
Published
FaultFixer error monitoring SDK for Next.js — built on @sentry/nextjs (MIT).
Downloads
57
Maintainers
Readme
@faultfixer/nextjs
FaultFixer error monitoring for Next.js. Wraps @sentry/nextjs (MIT) — same setup pattern (sentry.client.config.ts + sentry.server.config.ts), FaultFixer DSN.
npm i @faultfixer/nextjs// sentry.client.config.ts (and sentry.server.config.ts)
import * as FaultFixer from "@faultfixer/nextjs";
FaultFixer.init({ dsn: "<YOUR_DSN>" });// next.config.js — adds source-map upload + RSC error boundary instrumentation.
import { withFaultFixerConfig } from "@faultfixer/nextjs";
const nextConfig = { /* your config */ };
export default withFaultFixerConfig(nextConfig, { silent: true });Attribution
Wraps @sentry/nextjs under the MIT License. See NOTICE.md. Not affiliated with Sentry.
