13 lines
244 B
TypeScript
13 lines
244 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
experimental: {
|
|
serverActions: {
|
|
bodySizeLimit: "5gb", // Erhöht die Grenze auf 10 MB
|
|
},
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|