Files
bakery-ia/frontend/next.config.js
Urtzi Alfaro 5bb3e93da4 first commit
2025-07-17 13:54:51 +02:00

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