mirror of
https://github.com/langchain-ai/fullstack-chat-client.git
synced 2026-07-01 22:04:05 -04:00
11 lines
173 B
JavaScript
11 lines
173 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: "10mb",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|