Files
calculatrice/next.config.ts
T
Puechberty Arthur 68f382d8dd first commit
2026-03-30 20:36:20 +02:00

9 lines
196 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* Mode standalone : génère un dossier autonome pour Docker */
output: "standalone",
};
export default nextConfig;