From 65c77aca01663fb12b3c0068db8d486a305c7663 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Fri, 12 Dec 2025 06:58:45 -0800 Subject: [PATCH] fix readme inconsistencies --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c425654..832c48a 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Your project structure should be: │   │   ├── _layout.tsx │   │   ├── about.tsx │   │   └── index.tsx -│   └── server.tsx +│   └── server.ts └── tsconfig.json ``` @@ -219,8 +219,8 @@ bun add git+https://git.nose.space/defunkt/hype ```json "scripts": { - "start": "bun run index.ts", - "dev": "bun run --hot index.ts" + "start": "bun run src/server.ts", + "dev": "bun run --hot src/server.ts" }, ``` @@ -256,7 +256,7 @@ bun add git+https://git.nose.space/defunkt/hype } ``` -3. Use `Hype` just like `Hono` in your `index.tsx`, exporting `app.defaults`: +3. Use `Hype` just like `Hono` in your `src/server.ts`, exporting `app.defaults`: ```typescript import { Hype } from "hype"