From 5665d7ef1f2940d3a48c5fbb1db774f4c6ad7028 Mon Sep 17 00:00:00 2001 From: bravo-kernel Date: Wed, 11 Jun 2025 16:07:27 +0200 Subject: [PATCH] Remove production-only remark from README.md I am using `onServe` to run Socket.IO in development mode so it seems this production warning is outdated. --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 1d6b276..079c432 100644 --- a/README.md +++ b/README.md @@ -567,8 +567,6 @@ export interface HonoServerOptions extends HonoServerO /** * Callback executed just after `serve` from `@hono/node-server` * - * **Only applied to production mode** - * * For example, you can use this to bind `@hono/node-ws`'s `injectWebSocket` */ onServe?: (server: ServerType) => void;