diff --git a/src/adapter/cloudflare-workers/serve-static.ts b/src/adapter/cloudflare-workers/serve-static.ts index b2f4954e7..453db7e13 100644 --- a/src/adapter/cloudflare-workers/serve-static.ts +++ b/src/adapter/cloudflare-workers/serve-static.ts @@ -12,8 +12,11 @@ export type ServeStaticOptions = BaseServeStaticOptions /** * @deprecated * `serveStatic` in the Cloudflare Workers adapter is deprecated. - * If you want to create an application serving static assets, please consider using Cloudflare Pages. - * You can start to create the Cloudflare Pages application with the `npm create hono@latest` command. + * You can serve static files directly using Cloudflare Static Assets. + * @see https://developers.cloudflare.com/workers/static-assets/ + * Cloudflare Static Assets is currently in open beta. If this doesn't work for you, + * please consider using Cloudflare Pages. You can start to create the Cloudflare Pages + * application with the `npm create hono@latest` command. */ export const serveStatic = ( options: ServeStaticOptions