import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "standalone", images: { remotePatterns: [ { protocol: 'https', hostname: 'gravatar.com', port: '', pathname: '/avatar/**', }, ], }, experimental: { serverActions: { bodySizeLimit: '1000mb', }, }, async rewrites() { return [ { source: "/installHook.js.map", // the request that raises 404 destination: "/404", // serve a silent 404 response }, ]; }, }; export default nextConfig;