mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
12 lines
305 B
TypeScript
12 lines
305 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
serverExternalPackages: ["@copilotkit/runtime"],
|
|
typescript: {
|
|
// HttpAgent type mismatch with CopilotRuntime — pending upstream fix in @copilotkit/runtime
|
|
ignoreBuildErrors: true,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|