import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "standalone", serverExternalPackages: ["sharp"], experimental: { serverActions: { bodySizeLimit: "10mb", }, }, images: { remotePatterns: [ { protocol: "https", hostname: "rsocials.online", }, ], }, }; export default nextConfig;