first commit

This commit is contained in:
2025-07-05 02:34:28 +02:00
commit 423b02a195
11 changed files with 2240 additions and 0 deletions

11
vite.config.ts Normal file
View File

@@ -0,0 +1,11 @@
import { defineConfig } from 'vite'
export default defineConfig({
base: './',
server: {
port: 3000
},
worker: {
format: 'es'
}
})