production: docker + nginx config for rf-flux.com
Deploy to VPS / deploy (push) Has been cancelled

This commit is contained in:
2026-03-20 13:46:05 -05:00
parent b275b19f08
commit fc24313f15
187 changed files with 20977 additions and 767 deletions
+16 -4
View File
@@ -1,7 +1,19 @@
import type { NextConfig } from "next";
import createNextIntlPlugin from 'next-intl/plugin';
const nextConfig: NextConfig = {
/* config options here */
// 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
},
// Opcional, pero recomendado para mantener un código ultra limpio
reactStrictMode: true,
};
export default nextConfig;
// Envolvemos la configuración con el plugin de internacionalización
export default withNextIntl(nextConfig);