An HTML-only Bluesky frontend

add bot detection temporarily

+4
+4
main.js
··· 7 7 export const agent = new AtpAgent({ service: "https://public.api.bsky.app" }); 8 8 9 9 Deno.serve(async (req) => { 10 + // TEMPORARY: FOR BOT DETECTION ONLY 11 + const headers = new Headers(req.headers); 12 + console.log(headers.get("user-agent")); 13 + 10 14 const url = new URL(req.url); 11 15 const path = url.pathname; 12 16 const redir = `${url.protocol}${url.host}`;