fix: PutObject raw body, presigned URL auth guard, DeleteObjects tracking, home.ts path

This commit is contained in:
asepharyana
2026-07-06 21:38:17 +07:00
parent e175a27512
commit 0ad783b794
2 changed files with 22 additions and 28 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
export const handleHome = async (): Promise<Response> => {
const html = await Bun.file('src/home.html').text();
const html = await Bun.file(import.meta.dir + '/../home.html').text();
return new Response(html, {
status: 200,
headers: {