mirror of
https://github.com/khairul169/github-leaderboard.git
synced 2025-04-28 15:39:31 +07:00
feat: add http logger
This commit is contained in:
parent
161a49c705
commit
18b0f47c49
@ -3,6 +3,7 @@ import { cors } from "hono/cors";
|
|||||||
import { serveStatic } from "hono/bun";
|
import { serveStatic } from "hono/bun";
|
||||||
import router from "./router";
|
import router from "./router";
|
||||||
import logger from "./lib/logger";
|
import logger from "./lib/logger";
|
||||||
|
import { logger as httpLogger } from "hono/logger";
|
||||||
import { __DEV, __PROD } from "./lib/consts";
|
import { __DEV, __PROD } from "./lib/consts";
|
||||||
|
|
||||||
const HOST = import.meta.env.HOST || "127.0.0.1";
|
const HOST = import.meta.env.HOST || "127.0.0.1";
|
||||||
@ -25,7 +26,8 @@ app.get("/health", (c) => c.text("OK"));
|
|||||||
|
|
||||||
// Serve prod client app
|
// Serve prod client app
|
||||||
if (__PROD) {
|
if (__PROD) {
|
||||||
app.use("*", serveStatic({ root: "./dist/client" }));
|
app.use(httpLogger());
|
||||||
|
app.use(serveStatic({ root: "./dist/client" }));
|
||||||
}
|
}
|
||||||
|
|
||||||
// API router
|
// API router
|
||||||
|
Loading…
x
Reference in New Issue
Block a user