mirror of
https://github.com/ostris/ai-toolkit.git
synced 2026-02-08 22:49:58 +00:00
13 lines
214 B
TypeScript
13 lines
214 B
TypeScript
import type { NextConfig } from 'next';
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: '100mb',
|
|
},
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|