First implementation of 10 finger typing

This commit is contained in:
2026-09-11 21:55:45 +02:00
parent 7e5fd5ab75
commit f97de193d8
63 changed files with 8275 additions and 0 deletions

11
tippen/vite.config.ts Normal file
View File

@@ -0,0 +1,11 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
// Deliberately standalone: no proxy, no backend, no shared build with ../web. The game
// is pure client state (localStorage), so `vite dev` on its own is the whole runtime.
// Port 5174 so it can run next to the music player's 5173 without a clash.
export default defineConfig({
plugins: [react()],
server: { port: 5174 },
build: { outDir: "dist", emptyOutDir: true },
});