diff --git a/server.mjs b/server.mjs index 94705e9..e629432 100644 --- a/server.mjs +++ b/server.mjs @@ -14,8 +14,11 @@ const PORT = Number(process.env.PORT) || 10000; const DIR = join(fileURLToPath(new URL(".", import.meta.url)), "docs", "dist"); const EXACT = new Map(redirects.map((r) => [r.from, r.to])); -const PREFIX = [["/magic-account", "/smart-accounts/chain-abstraction/overview"]]; -const SPA_FALLBACK = ["/sdk", "/meta-infra", "/recovery-flow", "/blog", "/react", "/smart-wallet"]; +const PREFIX = [ + ["/magic-account", "/smart-accounts/chain-abstraction/overview"], + ["/blog", "https://www.zerodev.app/blog"], +]; +const SPA_FALLBACK = ["/sdk", "/meta-infra", "/recovery-flow", "/react", "/smart-wallet"]; const assets = sirv(DIR, { etag: true,