From 2fa52886a4f8c448e401095cd369cb750a1905a3 Mon Sep 17 00:00:00 2001 From: Nick Pang Date: Thu, 19 Sep 2024 07:42:42 +1000 Subject: [PATCH] Fixed next output that will break publish-ecr.yaml --- next.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index 150ff386..dc7ad3de 100644 --- a/next.config.js +++ b/next.config.js @@ -2,7 +2,7 @@ const nextConfig = { reactStrictMode: true, swcMinify: true, - output: "export", + output: "standalone", }; module.exports = nextConfig;