ZuploZuplo
LoginStart for Free
  • Documentation
  • API Reference
Getting Started
    Develop in the portal
      1 - Setup Your Gateway2 - Rate Limiting3 - API Key Auth4 - Deploy5 - Dynamic Rate LimitingDynamic MCP Server - Quickstart
    Develop locally with the CLI
      1 - Setup Your Gateway2 - Rate Limiting3 - API Key Auth4 - Deploy5 - Dynamic Rate LimitingDynamic MCP Server - Quickstart
Concepts
API Management
AI Gateway
MCP Gateway
MCP Server
Developer Portal
    OverviewLocal DevelopmentUpdating VersionsNode Modules & CustomizationZuplo Branding
    Configuration
    Writing
    OpenAPI
    Authentication
    Integrations
      Sentry
    Guides
    Extending
    Components
Development
Deploying & Source Control
Analytics
Observability
Networking & Infrastructure
Account Management
Programming API
Build with AI
Zuplo CLI
Migration Guides
Platform LimitsVersion Support PolicySecuritySupportTrust & ComplianceChangelog
powered by Zuplo
Integrations

Sentry

Sentry is a popular error tracking tool that helps you monitor and fix crashes in real time. It provides you with detailed error reports, so you can quickly identify and resolve issues before they affect your users.

Enable Sentry

  1. To enable it you have to first install the optional dependency @sentry/react.
TerminalCode
npm install --save @sentry/react
  1. And then set the SENTRY_DSN environment variable in your Dev Portal project.
TerminalCode
SENTRY_DSN=https://your-sentry-dsn

Release management

However this does not handle release management for you. For that you can create a custom vite.config.ts and use the @sentry/vite-plugin plugin.

Code
import { sentryVitePlugin } from "@sentry/vite-plugin"; import { defineConfig } from "vite"; export default defineConfig({ plugins: [ sentryVitePlugin({ authToken: "your-token", org: "your-org", project: "your-project", }), ], });
Edit this page
Last modified on September 17, 2026
FirebaseStatic Files
On this page
  • Enable Sentry
  • Release management
TypeScript