Add Request Logger to Console
This commit is contained in:
parent
cc8fe27935
commit
e6cdf3a977
@ -4,6 +4,9 @@ import { Index } from "./frontend/index";
|
||||
|
||||
const app = new Elysia()
|
||||
.use(html())
|
||||
.onRequest(({ request }) => {
|
||||
console.log(`Request ${request.method} ${request.url}`);
|
||||
})
|
||||
.get("/", () => Index())
|
||||
.get('/htmx.min.js', () => Bun.file("./src/frontend/htmx.min.js"))
|
||||
.get("/content/post", () => "I'm from the server")
|
||||
|
Loading…
Reference in New Issue
Block a user