Compare commits

...

1 Commits

Author SHA1 Message Date
dayuan.jiang
81e6c02fb4 fix: include instrumentation.ts in standalone build for Langfuse
Add outputFileTracingIncludes to next.config.ts to ensure instrumentation.ts
is included in standalone builds (required for App Runner deployment)
2025-12-23 01:00:30 +09:00

View File

@@ -10,6 +10,10 @@ const nextConfig: NextConfig = {
env: { env: {
APP_VERSION: packageJson.version, APP_VERSION: packageJson.version,
}, },
// Include instrumentation.ts in standalone build for Langfuse telemetry
outputFileTracingIncludes: {
"*": ["./instrumentation.ts"],
},
} }
export default nextConfig export default nextConfig