From 0615d144524871e2dcb314f592482921cae66a27 Mon Sep 17 00:00:00 2001 From: yuki-js Date: Sat, 9 Dec 2023 22:36:13 +0900 Subject: [PATCH] Change output value to "export" in next.config.js --- frontend/next.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/next.config.js b/frontend/next.config.js index 57a46e9..0bf9c11 100644 --- a/frontend/next.config.js +++ b/frontend/next.config.js @@ -4,7 +4,7 @@ const nextConfig = { ignoreDuringBuilds: true, }, trailingSlash: true, - output: "standalone", + output: "export", }; module.exports = nextConfig;