From bc369c01cea39a65493a8272ef06b234c79ee9c8 Mon Sep 17 00:00:00 2001 From: MAA39 Date: Mon, 4 Aug 2025 11:41:23 +0900 Subject: [PATCH] fix: Update Hono documentation link to correct backend frameworks URL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The documentation link in the Hono example was pointing to the old URL. Updated to the correct backend frameworks documentation path: - Old: https://vercel.com/docs/frameworks/hono - New: https://vercel.com/docs/frameworks/backend/hono This ensures users are directed to the proper documentation for Hono as a backend framework on Vercel. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- framework-boilerplates/hono/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework-boilerplates/hono/src/index.ts b/framework-boilerplates/hono/src/index.ts index 3fcea0e36..8298514a8 100644 --- a/framework-boilerplates/hono/src/index.ts +++ b/framework-boilerplates/hono/src/index.ts @@ -4,7 +4,7 @@ const app = new Hono() const welcomeStrings = [ "Hello Hono!", - "To learn more about Hono on Vercel, visit https://vercel.com/docs/frameworks/hono", + "To learn more about Hono on Vercel, visit https://vercel.com/docs/frameworks/backend/hono", ] app.get('/', (c) => {