8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
serverExternalPackages: ["@copilotkit/runtime"],
|
|
};
|
|
|
|
export default nextConfig;
|