From cb6f97cfb4f2dc825804247ae62456994db412d7 Mon Sep 17 00:00:00 2001 From: sanjibani <18418553+sanjibani@users.noreply.github.com> Date: Mon, 22 Jun 2026 13:41:58 +0530 Subject: [PATCH] docs(1.x/concepts/islands): fix dead deno.land/x/fresh IS_BROWSER doc link MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `https://deno.land/x/fresh/runtime.ts?doc=&s=IS_BROWSER` (404) — the `deno.land/x/*` docs URL pattern was retired when Deno moved module documentation to JSR. Replaced with the canonical JSR module page: `https://jsr.io/@fresh/core` (200). --- docs/1.x/concepts/islands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/1.x/concepts/islands.md b/docs/1.x/concepts/islands.md index 9d1aa2f7f36..eeb331f0428 100644 --- a/docs/1.x/concepts/islands.md +++ b/docs/1.x/concepts/islands.md @@ -211,7 +211,7 @@ An error occurred during route handling or page rendering. ReferenceError: Event .... ``` -Use the [`IS_BROWSER`](https://deno.land/x/fresh/runtime.ts?doc=&s=IS_BROWSER) +Use the [`IS_BROWSER`](https://jsr.io/@fresh/core) flag as a guard to fix the issue: ```tsx islands/my-island.tsx