diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-12-06 18:01:31 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-12-06 18:01:31 +0900 |
| commit | 17ba3c603e4c522ccca282f6786fff2e0b3f4f6e (patch) | |
| tree | 9cc28e1dcb0be2a89ada63de2717f061e66aa5cd /vitest.config.ts | |
| parent | 4f924d8004b6273230b23dcfe73bacbf114e4fac (diff) | |
| download | kioku-17ba3c603e4c522ccca282f6786fff2e0b3f4f6e.tar.gz kioku-17ba3c603e4c522ccca282f6786fff2e0b3f4f6e.tar.zst kioku-17ba3c603e4c522ccca282f6786fff2e0b3f4f6e.zip | |
feat(client): setup routing with wouter
Add wouter router with pages for home, login, register, and 404.
Include tests for all routes using @testing-library/react.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'vitest.config.ts')
| -rw-r--r-- | vitest.config.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vitest.config.ts b/vitest.config.ts index af9649f..924632b 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -1,6 +1,8 @@ +import react from "@vitejs/plugin-react"; import { defineConfig } from "vitest/config"; export default defineConfig({ + plugins: [react()], test: { globals: true, env: { |
