mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
13 lines
345 B
TypeScript
13 lines
345 B
TypeScript
import { sequence } from '@sveltejs/kit/hooks';
|
|
import { handleErrorWithSentry, sentryHandle } from '@sentry/sveltekit';
|
|
import { setupSentry } from '$lib/sentry';
|
|
|
|
setupSentry({
|
|
withSessionReplay: false,
|
|
withBrowserTracing: false
|
|
});
|
|
|
|
export const handle = sequence(sentryHandle());
|
|
|
|
export const handleError = handleErrorWithSentry();
|