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