[WIP] A (somewhat barebones) atproto app for creating custom sites without hosting!
1import index from "./www/index.html" with { type: "text" };
2
3export default function (req: Request) {
4 if (new URL(req.url).pathname === "/")
5 return new Response(index, {
6 headers: {
7 "Content-Type": "text/html; charset=utf8",
8 },
9 });
10 return new Response("404", {
11 status: 404,
12 });
13}