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