mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
12 lines
290 B
TypeScript
12 lines
290 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
env: {
|
|
NEXT_PUBLIC_BASE_URL:
|
|
process.env.NEXT_PUBLIC_BASE_URL || "http://localhost:3000",
|
|
},
|
|
serverExternalPackages: ["@copilotkit/runtime", "@copilotkitnext/runtime"],
|
|
};
|
|
|
|
export default nextConfig;
|