feat: new website

This commit is contained in:
Dan Finch 2026-05-13 02:03:11 +02:00
commit 50c1c47e2b
64 changed files with 2908 additions and 0 deletions

12
hypeup.config.ts Normal file
View file

@ -0,0 +1,12 @@
import { defineConfig } from "hypeup"
export default defineConfig({
clean: true,
dir: "src/routes",
vite: {
server: {
allowedHosts: [Bun.env.HOSTNAME!],
host: true,
},
},
})