From a64eed189a216161c3e830ac489f98cfe54b4a11 Mon Sep 17 00:00:00 2001 From: jejemerong <9708jjw@gmail.com> Date: Sat, 20 May 2023 12:51:20 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20env=20nextconfig=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 | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/next.config.js b/next.config.js index 767719f..d1c33f5 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,9 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {} +const nextConfig = { + reactStrictMode: true, + env: { + API_KEY: process.env.API_KEY, + }, +}; -module.exports = nextConfig +module.exports = nextConfig;