/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, images: { domains: ["images.unsplash.com", "avatars.githubusercontent.com"], }, experimental: { appDir: true, fontLoaders: [ { loader: "@next/font/google", options: { subsets: ["latin"] }, }, ], }, } export default nextConfig