From a73895e7edc69b6e6defa81b761fe23738788496 Mon Sep 17 00:00:00 2001 From: leejin_rho Date: Thu, 27 Jun 2024 14:26:23 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20next.config.js=20env=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- next.config.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/next.config.js b/next.config.js index feae51b..7c6ec5f 100644 --- a/next.config.js +++ b/next.config.js @@ -16,6 +16,10 @@ const nextConfig = { styledComponents: true, }, output: "export", + + env: { + NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL, + }, }; module.exports = nextConfig;