Skip to content

Commit 06ea7af

Browse files
committed
fix(hono): response content-type
1 parent 0b2b34a commit 06ea7af

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/example-hono/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Hono } from 'hono';
33
const app = new Hono();
44

55
app.get('/', (c) => {
6-
return c.text('Hello Hono!');
6+
return c.html('Hello Hono!');
77
});
88

99
export const handler = (event: Request) => app.fetch(event);

0 commit comments

Comments
 (0)