Add new ServerHandler package which handles requests

This commit is contained in:
Jesse Wierzbinski 2024-04-13 21:51:00 -10:00
parent 3cdd685035
commit 327a716b12
No known key found for this signature in database
10 changed files with 616 additions and 110 deletions

View file

@ -2,6 +2,9 @@
import { $ } from "bun";
import { rawRoutes } from "~routes";
const feOnly = process.argv.includes("--frontend");
const serverOnly = process.argv.includes("--server");
console.log("Building frontend...");
await $`bun fe:build`;