/** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', reactStrictMode: true, experimental: { typedRoutes: false, }, images: { remotePatterns: [ { protocol: 'https', hostname: 'lh3.googleusercontent.com' }, { protocol: 'https', hostname: 'avatars.githubusercontent.com' }, ], }, }; export default nextConfig;