Files
copilotkit__copilotkit/examples/integrations/langgraph-python/apps/app/next.config.ts

13 lines
320 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
serverExternalPackages: ["@copilotkit/runtime"],
typescript: {
// Docker route override uses HttpAgent which has a type mismatch with CopilotRuntime
ignoreBuildErrors: true,
},
};
export default nextConfig;