preciazo/sepa/sitio2/vite.config.ts

17 lines
346 B
TypeScript
Raw Normal View History

2024-09-14 15:06:36 +00:00
import { sentrySvelteKit } from '@sentry/sveltekit';
2024-09-14 13:34:36 +00:00
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
2024-09-14 15:06:36 +00:00
plugins: [
sentrySvelteKit({
sourceMapsUploadOptions: {
org: 'nulo-inc',
project: 'preciazo-sitio2',
url: 'https://sentry.io/'
}
}),
sveltekit()
]
2024-09-14 13:34:36 +00:00
});