+4
-1
.oxfmtrc.json
+4
-1
.oxfmtrc.json
+4
-4
apps/web/index.ts
+4
-4
apps/web/index.ts
···
1
1
import { Hono } from "hono";
2
-
import {serve, type HttpBindings} from "@hono/node-server"
2
+
import { serve, type HttpBindings } from "@hono/node-server";
3
3
4
-
const app = new Hono<{Bindings: HttpBindings}>();
4
+
const app = new Hono<{ Bindings: HttpBindings }>();
5
5
6
6
app.get("/", (c) => {
7
7
return c.text("yo!!");
···
9
9
10
10
serve({
11
11
fetch: app.fetch,
12
-
port: 8002
13
-
})
12
+
port: 8002,
13
+
});
+1
-3
apps/web/tsconfig.json
+1
-3
apps/web/tsconfig.json