Skip to content

Commit

Permalink
feat: 환경변수 타입 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
a-honey committed Feb 16, 2024
1 parent 7be7d3d commit 8593188
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions env.d.ts
Original file line number Diff line number Diff line change
@@ -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;
}
}

0 comments on commit 8593188

Please sign in to comment.