feat: various improvements

This commit is contained in:
Dan Finch 2026-05-19 00:19:01 +02:00
parent 6598030888
commit 4999423af4
9 changed files with 42 additions and 23 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,
},
},
})