import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ devIndicators: { buildActivity: false, }, images: { remotePatterns: [ { protocol: "https", hostname: "**", }, ], }, }; export default nextConfig;