Files
bakery-ia/frontend/next.config.js

14 lines
256 B
JavaScript
Raw Normal View History

2025-07-17 13:54:51 +02:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
i18n: {
locales: ['es', 'en'],
defaultLocale: 'es',
},
images: {
domains: ['bakeryforecast.es'],
},
}
module.exports = nextConfig