From dc347c6b0c2502f171783ec5072c200a2b32ef63 Mon Sep 17 00:00:00 2001 From: sanjibani <18418553+sanjibani@users.noreply.github.com> Date: Mon, 22 Jun 2026 13:41:37 +0530 Subject: [PATCH] docs(1.x/concepts/server-configuration): fix dead deno.land/x/fresh doc link MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `https://deno.land/x/fresh/server.ts?s=FreshConfig` (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/server-configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/1.x/concepts/server-configuration.md b/docs/1.x/concepts/server-configuration.md index 6afe752b203..1494605e052 100644 --- a/docs/1.x/concepts/server-configuration.md +++ b/docs/1.x/concepts/server-configuration.md @@ -15,7 +15,7 @@ export async function start(manifest: Manifest, config: FreshConfig = {}); `Manifest` comes from `fresh.gen.ts`, so nothing to do there. `config` is where things get interesting. -[`FreshConfig`](https://deno.land/x/fresh/server.ts?s=FreshConfig) looks like +[`FreshConfig`](https://jsr.io/@fresh/core) looks like this: ```ts fresh 🍋