mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-23 20:54:50 +03:00
22 lines
380 B
TypeScript
22 lines
380 B
TypeScript
import { sentrySvelteKit } from '@sentry/sveltekit';
|
|
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
sentrySvelteKit({
|
|
sourceMapsUploadOptions: {
|
|
org: 'gitbutler',
|
|
project: 'gitbutler-web',
|
|
telemetry: false
|
|
}
|
|
}),
|
|
sveltekit()
|
|
],
|
|
server: {
|
|
fs: {
|
|
strict: false
|
|
}
|
|
}
|
|
});
|