This commit is contained in:
2026-03-29 17:08:10 +01:00
parent 950bdc3dca
commit 2b170d24e1
11 changed files with 27 additions and 13 deletions
+2 -2
View File
@@ -14,8 +14,8 @@ await bunext.bunextInit();
const server = Bun.serve({
routes: {
"/*": {
async GET(req) {
return await bunext.bunextRequestHandler({ req });
async GET(req, server) {
return await bunext.bunextRequestHandler({ req, server });
},
},
},