mirror of
https://github.com/run-llama/research-extractor.git
synced 2026-06-30 22:28:00 -04:00
12 lines
185 B
TypeScript
12 lines
185 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: '15mb',
|
|
},
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|