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 1/2] 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 From 3d349923b211a22a296d3cad1ae9dfa9bcaeaef4 Mon Sep 17 00:00:00 2001 From: sanjibani <18418553+sanjibani@users.noreply.github.com> Date: Thu, 25 Jun 2026 21:18:14 +0530 Subject: [PATCH 2/2] docs(1.x/concepts/updating): replace dead deno.land/x/fresh link with jsr.io/@fresh/core --- docs/1.x/concepts/updating.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/1.x/concepts/updating.md b/docs/1.x/concepts/updating.md index c935a0d8fc8..ead35bbcc1e 100644 --- a/docs/1.x/concepts/updating.md +++ b/docs/1.x/concepts/updating.md @@ -6,7 +6,7 @@ description: | Fresh consists of multiple pieces which are independently versioned and released. -- Fresh (https://deno.land/x/fresh) +- Fresh (https://jsr.io/@fresh/core) - Preact (https://esm.sh/preact) - preact-render-to-string (https://esm.sh/preact-render-to-string)