theme and search fixes

This commit is contained in:
master
2026-03-08 16:20:52 +02:00
parent eb4ade0335
commit 9f6fd0b4aa
21 changed files with 455 additions and 319 deletions

View File

@@ -0,0 +1,16 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
pool: 'threads',
poolOptions: {
threads: {
singleThread: true,
},
},
fileParallelism: false,
isolate: false,
maxWorkers: 1,
minWorkers: 1,
},
});