Files
oms-website-nextjs/next.config.ts
2025-04-21 20:59:37 +02:00

18 lines
377 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
domains: ["avatars.githubusercontent.com", "storage.cvevolve.com"],
},
serverActions: {
bodySizeLimit: "10mb", // Increase limit (e.g., to 10MB) - adjust as needed
},
experimental: {
serverActions: {
bodySizeLimit: "2mb",
},
},
};
export default nextConfig;