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()
|
const app = new Elysia()
|
||||||
.use(html())
|
.use(html())
|
||||||
|
.onRequest(({ request }) => {
|
||||||
|
console.log(`Request ${request.method} ${request.url}`);
|
||||||
|
})
|
||||||
.get("/", () => Index())
|
.get("/", () => Index())
|
||||||
.get('/htmx.min.js', () => Bun.file("./src/frontend/htmx.min.js"))
|
.get('/htmx.min.js', () => Bun.file("./src/frontend/htmx.min.js"))
|
||||||
.get("/content/post", () => "I'm from the server")
|
.get("/content/post", () => "I'm from the server")
|
||||||
|
Loading…
Reference in New Issue
Block a user