mirror of
https://github.com/OwethuManagedServices/oms-website-nextjs.git
synced 2025-12-17 15:38:09 +00:00
18 lines
377 B
TypeScript
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;
|