init
Some checks failed
Deploy to Cloudflare Pages / deploy (push) Failing after 57s

This commit is contained in:
2026-01-15 18:10:22 +09:00
commit d19fd863fc
21 changed files with 2129 additions and 0 deletions

14
vite.config.ts Normal file
View File

@@ -0,0 +1,14 @@
import { defineConfig } from 'vite'
export default defineConfig({
root: '.',
publicDir: 'public',
build: {
outDir: 'dist',
emptyDirBeforeWrite: true,
},
server: {
port: 3000,
host: '0.0.0.0',
},
})