From 8593188d37b2ecc86c6cec7ed2fca2a07c2b2bbc Mon Sep 17 00:00:00 2001 From: a-honey Date: Sat, 17 Feb 2024 01:39:42 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=ED=99=98=EA=B2=BD=EB=B3=80=EC=88=98=20?= =?UTF-8?q?=ED=83=80=EC=9E=85=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- env.d.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 env.d.ts diff --git a/env.d.ts b/env.d.ts new file mode 100644 index 0000000..f9fe038 --- /dev/null +++ b/env.d.ts @@ -0,0 +1,9 @@ +declare namespace NodeJS { + interface ProcessEnv { + NEXT_PUBLIC_BASE_URI: string; + NEXT_PUBLIC_KAKAO_API_KEY: string; + NEXT_PUBLIC_KAKAO_REDIRECT_URI: string; + NEXT_PUBLIC_GOOGLE_API_KEY: string; + NEXT_PUBLIC_GOOGLE_REDIRECT_URI: string; + } +}