From 5beec3f106b0890cc76150d0e3b3661c576d4c3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 19 Aug 2022 14:36:01 +0200 Subject: feat(unstable): change Deno.serve() API (#15498) - Merge "Deno.serve()" and "Deno.serveTls()" API - Remove first argument and use "fetch" field options instead - Update type declarations - Add more documentation --- cli/bench/http/deno_reactdom_ssr_flash.jsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'cli/bench/http/deno_reactdom_ssr_flash.jsx') diff --git a/cli/bench/http/deno_reactdom_ssr_flash.jsx b/cli/bench/http/deno_reactdom_ssr_flash.jsx index 571545b27..0d749c634 100644 --- a/cli/bench/http/deno_reactdom_ssr_flash.jsx +++ b/cli/bench/http/deno_reactdom_ssr_flash.jsx @@ -19,8 +19,11 @@ const headers = { }; serve( - async () => { - return new Response(await renderToReadableStream(), headers); + { + fetch: async () => { + return new Response(await renderToReadableStream(), headers); + }, + hostname, + port, }, - { hostname, port }, ); -- cgit v1.2.3