Sentry additions for the Qualtive client library for web.
npm install qualtive-web-sentry
TypeScript types are included in this package.
This package exposes a Sentry integration which can be installed when you initialize Sentry.
Example:
import { qualtiveIntegration } from "qualtive-web-sentry"
import * as Sentry from "@sentry/browser"
Sentry.init({
...otherSentryOptions,
integrations: [
qualtiveIntegration(),
],
})