Add web frontend

This commit is contained in:
2026-02-13 23:15:12 -08:00
parent 5faa57a741
commit 16a668b6ee
37 changed files with 4149 additions and 69 deletions

11
web/vite.config.js Normal file
View File

@@ -0,0 +1,11 @@
import { defineConfig } from "vite";
import preact from "@preact/preset-vite";
import path from "node:path";
export default defineConfig({
plugins: [preact()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
});