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;