Files
PrintAuftrag-Portfolio/frontend/next.config.ts
2025-11-08 13:42:43 +01:00

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;