diff --git a/frontend/index.js b/frontend/index.js index c92307885f..17abbdc008 100644 --- a/frontend/index.js +++ b/frontend/index.js @@ -16,6 +16,9 @@ Bun.serve({ return new Response(file); }, error() { - return new Response(null, { status: 404 }); + let filePath = BASE_PATH + "/index.html"; + const file = Bun.file(filePath); + return new Response(file); + // return new Response(null, { status: 404 }); }, });