diff --git a/next.config.ts b/next.config.ts index 9435061..8dd357b 100644 --- a/next.config.ts +++ b/next.config.ts @@ -3,6 +3,9 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "standalone", serverExternalPackages: ['lighthouse', 'chrome-launcher'], + outputFileTracingIncludes: { + '/api/insight': ['./node_modules/lighthouse/**/*'], + }, }; export default nextConfig;