diff --git a/apps/web/next.config.mjs b/apps/web/next.config.mjs index bd7f39e..80de046 100644 --- a/apps/web/next.config.mjs +++ b/apps/web/next.config.mjs @@ -71,6 +71,10 @@ const nextConfig = { }, // In Standalone mode, Next.js expects the tracing root to be the monorepo root outputFileTracingRoot: path.join(dirname, '../../'), + outputFileTracingIncludes: { + '/(site)/blog/[slug]': ['./content/blog/**/*'], + '/blog/[slug]': ['./content/blog/**/*'], + }, }; const withMDX = createMDX({});