[WIP] A (somewhat barebones) atproto app for creating custom sites without hosting!
at 4e80ce9ed78183c2e0fbd9797794d0cb86d51ec7 13 lines 317 B view raw
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}