chore: initialize frontend project

This commit is contained in:
kever
2026-06-07 12:57:41 +08:00
commit 46796b5918
25 changed files with 4596 additions and 0 deletions

9
vitest.config.ts Normal file
View File

@@ -0,0 +1,9 @@
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
environment: 'node',
globals: true,
include: ['src/**/*.test.ts'],
},
})