diff options
| author | Filip Wandzio <contact@philw.dev> | 2025-09-08 19:20:16 +0200 |
|---|---|---|
| committer | Filip Wandzio <contact@philw.dev> | 2025-09-08 19:20:16 +0200 |
| commit | fcc7a9157c2c63e86bb6e93558a3a228ff8faa3f (patch) | |
| tree | 0c0fd22a4b8d1fb2c85e9815510f806c73fc839e /vitest.config.ts | |
| parent | 74eea9c13a4bd9846fd82bbaae841322cf5650fc (diff) | |
| download | philw.dev-fcc7a9157c2c63e86bb6e93558a3a228ff8faa3f.tar.gz philw.dev-fcc7a9157c2c63e86bb6e93558a3a228ff8faa3f.zip | |
Rewrite whole project in svelte for better accessibility
Signed-off-by: Filip Wandzio <contact@philw.dev>
Diffstat (limited to '')
| -rw-r--r-- | vitest.config.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vitest.config.ts b/vitest.config.ts new file mode 100644 index 0000000..f69f040 --- /dev/null +++ b/vitest.config.ts | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | // vitest.config.ts | ||
| 2 | import { defineConfig } from 'vitest/config' | ||
| 3 | import { svelte } from '@sveltejs/vite-plugin-svelte' | ||
| 4 | |||
| 5 | export default defineConfig({ | ||
| 6 | plugins: [svelte()], | ||
| 7 | test: { | ||
| 8 | globals: true, | ||
| 9 | environment: 'jsdom', | ||
| 10 | setupFiles: './tests/setup.ts', | ||
| 11 | }, | ||
| 12 | }) | ||
