LaLiga-FrontEnd/next.config.js

16 lines
283 B
JavaScript

/** @type {import('next').NextConfig} */
const { i18n } = require('./next-i18next.config')
const nextConfig = {
reactStrictMode: true,
env: {
BASE_URL: process.env.BASE_URL
},
i18n: {
defaultLocale: 'es',
locales: ['es', 'en']
}
}
module.exports = nextConfig