migrate to nextjs

This commit is contained in:
2026-01-29 00:14:30 +01:00
parent 081dad7cf9
commit 0853a497ef
34 changed files with 4879 additions and 5956 deletions

17
vitest.config.ts Normal file
View File

@@ -0,0 +1,17 @@
import { defineConfig } from 'vitest/config'
import react from '@vitejs/plugin-react'
import path from 'path'
export default defineConfig({
plugins: [react()],
test: {
environment: 'jsdom',
globals: true,
setupFiles: './tests/setup.ts',
},
resolve: {
alias: {
'@': path.resolve(__dirname, './'),
},
},
})