import type { NextConfig } from "next"; const nextConfig: NextConfig = { images: { remotePatterns: [ { protocol: 'https', hostname: 'a.ppy.sh', pathname: '/**', }, { protocol: 'https', hostname: 'assets.ppy.sh', pathname: '/**', }, { protocol: 'https', hostname: 'osu.ppy.sh', pathname: '/**', }, ], }, }; export default nextConfig;