Skip to content

Commit

Permalink
chore: DEBUG_MODEであるかの比較ができていなかったのを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
rito528 committed May 19, 2024
1 parent b3a0dbd commit 791d5f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion global.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ declare namespace NodeJS {
readonly NEXT_PUBLIC_MS_APP_CLIENT_ID: string;
readonly NEXT_PUBLIC_MS_APP_REDIRECT_URL: string;
readonly BACKEND_SERVER_URL: string;
readonly DEBUG_MODE: boolean;
readonly DEBUG_MODE: string;
}
}
2 changes: 1 addition & 1 deletion src/env.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const MS_APP_CLIENT_ID = process.env.NEXT_PUBLIC_MS_APP_CLIENT_ID;
export const MS_APP_REDIRECT_URL = process.env.NEXT_PUBLIC_MS_APP_REDIRECT_URL;
export const BACKEND_SERVER_URL = process.env.BACKEND_SERVER_URL;
export const DEBUG_MODE = process.env.DEBUG_MODE;
export const DEBUG_MODE = Boolean(process.env.DEBUG_MODE);

0 comments on commit 791d5f3

Please sign in to comment.