🎉 initial commit

This commit is contained in:
2026-03-20 08:11:31 +00:00
commit fe389a9856
25 changed files with 3621 additions and 0 deletions

12
vite.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'vite'
export default defineConfig({
server: {
port: 3000,
host: true
},
build: {
outDir: 'dist',
assetsInlineLimit: 0
}
})