diff --git a/next.config.ts b/next.config.ts index e10ab30..69f0a74 100644 --- a/next.config.ts +++ b/next.config.ts @@ -10,6 +10,10 @@ const nextConfig: NextConfig = { env: { APP_VERSION: packageJson.version, }, + // Include instrumentation.ts in standalone build for Langfuse telemetry + outputFileTracingIncludes: { + "*": ["./instrumentation.ts"], + }, } export default nextConfig