import { Elysia } from "elysia"; import { Index } from "./frontend"; export const app = new Elysia() .get("/", () => Index("/")) .get("/blog", () => Index("/blog")) .get("/projects", () => Index("/projects")) .get("/content/post", () => "I'm from the server")