Merge dev to main: Security improvements and comprehensive test infrastructure #39

Merged
jimmy merged 195 commits from dev into main 2026-04-08 01:42:27 +08:00
Showing only changes of commit 24969d0d3e - Show all commits
+8 -1
View File
@@ -2,7 +2,14 @@ import { defineConfig } from 'vitest/config';
import { svelte } from '@sveltejs/vite-plugin-svelte';
export default defineConfig({
plugins: [svelte({ hot: !process.env.VITEST })],
plugins: [
svelte({
hot: !process.env.VITEST,
compilerOptions: {
dev: true
}
})
],
test: {
globals: true,
environment: 'jsdom',