14 lines
256 B
JavaScript
14 lines
256 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
i18n: {
|
|
locales: ['es', 'en'],
|
|
defaultLocale: 'es',
|
|
},
|
|
images: {
|
|
domains: ['bakeryforecast.es'],
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig |