mirror of
https://github.com/catdevnull/preciazo.git
synced 2025-02-23 05:36:25 +00:00
16 lines
346 B
TypeScript
16 lines
346 B
TypeScript
import { sentrySvelteKit } from '@sentry/sveltekit';
|
|
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
sentrySvelteKit({
|
|
sourceMapsUploadOptions: {
|
|
org: 'nulo-inc',
|
|
project: 'preciazo-sitio2',
|
|
url: 'https://sentry.io/'
|
|
}
|
|
}),
|
|
sveltekit()
|
|
]
|
|
});
|