gitbutler/apps/desktop/vite.config.ts

72 lines
1.7 KiB
TypeScript
Raw Normal View History

2023-04-21 16:55:54 +03:00
import { sentrySvelteKit } from '@sentry/sveltekit';
import { sveltekit } from '@sveltejs/kit/vite';
2024-08-21 02:29:04 +03:00
import { svelteTesting } from '@testing-library/svelte/vite';
import { defineConfig } from 'vitest/config';
2023-01-31 17:55:57 +03:00
export default defineConfig({
2024-05-06 14:06:13 +03:00
plugins: [
sentrySvelteKit({
adapter: 'other',
autoInstrument: {
load: true,
serverLoad: false
},
sourceMapsUploadOptions: {
org: 'gitbutler',
project: 'app-js',
authToken: process.env.SENTRY_AUTH_TOKEN,
telemetry: false,
unstable_sentryVitePluginOptions: {
telemetry: false,
release: {
name: process.env.SENTRY_RELEASE,
create: true,
setCommits: {
auto: true,
ignoreMissing: true,
ignoreEmpty: true
}
}
}
2024-05-06 14:06:13 +03:00
}
}),
2024-08-21 02:29:04 +03:00
sveltekit(),
svelteTesting()
2024-05-06 14:06:13 +03:00
],
2023-01-31 17:55:57 +03:00
2024-05-06 14:06:13 +03:00
// Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build`
// prevent vite from obscuring rust errors
clearScreen: false,
// tauri expects a fixed port, fail if that port is not available
server: {
port: 1420,
2024-07-29 11:49:22 +03:00
strictPort: true,
fs: {
strict: false
2024-07-29 11:49:22 +03:00
}
2024-05-06 14:06:13 +03:00
},
// to make use of `TAURI_DEBUG` and other env variables
// https://tauri.studio/v1/api/config#buildconfig.beforedevcommand
envPrefix: ['VITE_', 'TAURI_'],
resolve: {
conditions: ['es2015']
},
2024-05-06 14:06:13 +03:00
build: {
// Tauri supports es2021
2024-06-04 18:35:48 +03:00
target: process.env.TAURI_PLATFORM === 'windows' ? 'chrome105' : 'safari13',
2024-05-06 14:06:13 +03:00
// minify production builds
minify: !process.env.TAURI_DEBUG ? 'esbuild' : false,
// ship sourcemaps for better sentry error reports
sourcemap: true
2024-05-06 14:06:13 +03:00
},
test: {
deps: {
inline: ['sorcery']
},
includeSource: ['src/**/*.{js,ts}'],
2024-08-21 02:29:04 +03:00
exclude: ['node_modules/**/*', 'e2e/**/*'],
environment: 'jsdom',
setupFiles: ['./vitest-setup.js']
2024-05-06 14:06:13 +03:00
}
2023-01-31 17:55:57 +03:00
});