LaLiga-FrontEnd/next.config.js

16 lines
328 B
JavaScript

/** @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