diff --git a/next.config.ts b/next.config.ts index d9946ee..2602ae9 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,19 +1,19 @@ import createNextIntlPlugin from 'next-intl/plugin'; -// Le indicamos d贸nde estar谩 nuestro archivo principal de configuraci贸n const withNextIntl = createNextIntlPlugin('./src/i18n/request.ts'); -/** @type {import('next').NextConfig} */ const nextConfig = { - // Esta l铆nea es la magia para Docker: empaqueta solo lo necesario output: "standalone" as const, images: { - qualities: [75, 90, 100], // 馃敟 Agrega esto + qualities: [75, 90, 100], + }, + reactStrictMode: true, + serverExternalPackages: ['nodemailer'], + experimental: { + serverActions: { + bodySizeLimit: '500mb', + }, }, - // Opcional, pero recomendado para mantener un c贸digo ultra limpio - reactStrictMode: true, - }; -// Envolvemos la configuraci贸n con el plugin de internacionalizaci贸n export default withNextIntl(nextConfig); \ No newline at end of file