Convert project to TypeScript; add workflow to build with Vite then publish to GH Pages.

This commit is contained in:
天クマ 2026-07-20 11:18:19 -03:00
commit e615234325
30 changed files with 1932 additions and 443 deletions

9
vite.config.ts Normal file
View file

@ -0,0 +1,9 @@
import { defineConfig } from 'vite';
export default defineConfig({
root: 'web',
build: {
outDir: '../dist',
emptyOutDir: true,
},
});