Initial commit

This commit is contained in:
jude
2023-10-28 14:50:37 +01:00
commit 8d384c9e50
91 changed files with 73289 additions and 0 deletions

10
vite.config.ts Normal file
View File

@ -0,0 +1,10 @@
import { defineConfig } from "vite";
import preact from "@preact/preset-vite";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [preact()],
build: {
assetsDir: "static/assets",
},
});