Files
copilotkit--copilotkit/examples/showcases/strands-file-analyzer/next.config.ts
T
2026-07-13 12:58:18 +08:00

9 lines
225 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// Treat these packages as external to avoid bundling test files
serverExternalPackages: ["pino", "thread-stream"],
};
export default nextConfig;