feat: add web file manager UI and S3 catch-all route

This commit is contained in:
asepharyana
2026-07-06 20:56:55 +07:00
parent a4f902a37b
commit 5e38f80267
3 changed files with 275 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
export const handleHome = async (): Promise<Response> => {
const html = await Bun.file('src/home.html').text();
return new Response(html, {
status: 200,
headers: {
'content-type': 'text/html; charset=utf-8',
},
});
};