• Blog
  • Documentation
  • Courses
  • Changelog
  • AI Starters
  • UI Kit
  • FAQ
  • Supamode
    New
  • Pricing

Launch your next SaaS in record time with Makerkit, a React SaaS Boilerplate for Next.js and Supabase.

Makerkit is a product of Makerkit Pte Ltd (registered in the Republic of Singapore)Company Registration No: 202407149CFor support or inquiries, please contact us

About
  • FAQ
  • Contact
  • Verify your Discord
  • Consultation
  • Open Source
  • Become an Affiliate
Product
  • Documentation
  • Blog
  • Changelog
  • UI Blocks
  • Figma UI Kit
  • AI SaaS Starters
License
  • Activate License
  • Upgrade License
  • Invite Member
Legal
  • Terms of License
    • How Monitoring works
    • Baselime
    • Sentry

Configuring Sentry in your Remix Supabase SaaS kit

Please set the following environment variable:

bash
VITE_MONITORING_PROVIDER=sentry
VITE_SENTRY_DSN=your_dsn

Update your root app at apps/web/app/root.tsx to include the following:

  1. Install the Sentry SDK for Remix in your application project:
bash
cd apps/web
pnpm i @sentry/remix
  1. Update your root app to include the Sentry SDK:
tsx
// import the Sentry SDK
import { withSentry } from '@sentry/remix';
// export your root app wrapped with Sentry
export default withSentry(App);