import type { NextConfig } from "next"; const nextConfig: NextConfig = { images: { remotePatterns: [ { protocol: "https", hostname: "avatars.githubusercontent.com", }, { protocol: "https", hostname: "storage.cvevolve.com", }, ], }, experimental: { serverActions: { bodySizeLimit: "5mb", }, }, }; export default nextConfig;