From 5f7a9881eaa7d2cb25a7787200699a05fe87a976 Mon Sep 17 00:00:00 2001 From: Ajax Davis Date: Mon, 29 Dec 2025 21:42:26 +1000 Subject: [PATCH] fix: add force-dynamic to tool detail page to fix scoped package 404s MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- apps/web/src/app/tool/[...slug]/page.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/web/src/app/tool/[...slug]/page.tsx b/apps/web/src/app/tool/[...slug]/page.tsx index 84ec4c2..917323b 100644 --- a/apps/web/src/app/tool/[...slug]/page.tsx +++ b/apps/web/src/app/tool/[...slug]/page.tsx @@ -3,6 +3,8 @@ import type { Metadata } from 'next'; import { notFound } from 'next/navigation'; import { type Tool, ToolDetailClient } from './ToolDetailClient'; +export const dynamic = 'force-dynamic'; + interface ToolDetailPageProps { params: Promise<{ slug: string[] }>; }