mirror of
https://github.com/arthur-pbty/calculatrice.git
synced 2026-06-03 23:36:29 +02:00
8 lines
184 B
JavaScript
8 lines
184 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
/* Mode standalone : génère un dossier autonome pour Docker */
|
|
output: "standalone",
|
|
};
|
|
|
|
export default nextConfig;
|