Skip to content

Commit ec59f5c

Browse files
authored
Merge pull request #285 from Nexters/fix/v-console-only-production
fix: 분기를 반대로 넣어서 수정
2 parents acf9d17 + e2f4ca2 commit ec59f5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/admin/src/utils/vConsole.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { IS_PRODUCTION_PHASE } from '~/constants/phase';
55
let vConsoleObject: vConsole | undefined;
66

77
export const initVConsole = async () => {
8-
if (checkIsWebView() && IS_PRODUCTION_PHASE) {
8+
if (checkIsWebView() && !IS_PRODUCTION_PHASE) {
99
const { default: vConsole } = await import('vconsole');
1010
vConsoleObject = new vConsole({});
1111
}

0 commit comments

Comments
 (0)