Files
copilotkit__copilotkit/examples/v2/react/demo/next.config.ts
2026-02-13 11:01:44 +01:00

9 lines
179 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
serverExternalPackages: ["better-sqlite3"],
};
export default nextConfig;