From 51b61037b8e8d36ae3759e564bf5f7994925399d Mon Sep 17 00:00:00 2001 From: leonardomeireles55 Date: Mon, 20 Jan 2025 08:53:41 -0300 Subject: [PATCH] feat: enable standalone output mode in Next.js configuration --- next.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.js b/next.config.js index 856ee96..e6e7cd5 100644 --- a/next.config.js +++ b/next.config.js @@ -1,6 +1,7 @@ /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: false, + output: 'standalone', eslint: { ignoreDuringBuilds: true, },