12 lines
181 B
TypeScript
12 lines
181 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: "5mb"
|
|
}
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|