Files
copilotkit__copilotkit/examples/integrations/a2a-a2ui/next.config.js
2026-06-03 14:28:57 -07:00

13 lines
295 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
serverExternalPackages: ["@copilotkit/runtime"],
env: {
NEXT_PUBLIC_COPILOTKIT_THREADS_ENABLED: process.env.COPILOTKIT_LICENSE_TOKEN
? "true"
: "false",
},
};
export default nextConfig;