13 lines
209 B
TypeScript
13 lines
209 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: '15mb',
|
|
},
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|