From f1b34a3d248b3f0dc87c20daa28c65df288d899a Mon Sep 17 00:00:00 2001 From: Ed Zynda Date: Mon, 16 Sep 2024 23:54:07 +0300 Subject: [PATCH] testing --- vite.config.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index 14b2615..ea221d5 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,12 +1,15 @@ -import { sentrySvelteKit } from '@sentry/sveltekit' +import { sentryVitePlugin } from '@sentry/vite-plugin' import { sveltekit } from '@sveltejs/kit/vite' import { defineConfig } from 'vite' import { nodePolyfills } from 'vite-plugin-node-polyfills' export default defineConfig({ + build: { + sourcemap: true, + }, plugins: [ - sentrySvelteKit({ - autoInstrument: false, + sentryVitePlugin({ + release: { finalize: false }, }), nodePolyfills({ include: ['path', 'stream', 'util'],