import type { NextConfig } from "next"; const nextConfig: NextConfig = { devIndicators: false, experimental: { serverActions: { bodySizeLimit: "12mb" } }, images: { remotePatterns: [ { protocol: "https", hostname: "**" }, { protocol: "http", hostname: "127.0.0.1" }, { protocol: "http", hostname: "localhost" } ] } }; export default nextConfig;