/** @type {import('next').NextConfig} */ const { i18n } = require('./next-i18next.config') const nextConfig = { reactStrictMode: false, i18n: { defaultLocale: 'es', locales: ['es', 'en'] }, images: { domains: ['lh3.googleusercontent.com', 'avatars.githubusercontent.com'] } } module.exports = nextConfig