Refactor Docker setup and configuration for development environment

This commit is contained in:
Puechberty Arthur
2026-03-31 20:47:38 +02:00
parent 4ca8848d09
commit c502774617
3 changed files with 50 additions and 14 deletions
+7
View File
@@ -1,7 +1,14 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// Mode production strict pour React (détecte les erreurs tôt)
reactStrictMode: true,
// Build standalone pour Docker → image finale légère et indépendante
output: "standalone",
// Compression des pages côté serveur (gzip/brotli)
compress: true,
};
export default nextConfig;