File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 11import type { CapacitorConfig } from '@capacitor/cli' ;
22
3- const LOCAL_ANDROID = process . env . NEXT_PUBLIC_LOCAL_ANDROID !== undefined
3+ const LOCAL_ANDROID = process . env . NEXT_PUBLIC_LOCAL_ANDROID === '1'
44console . log ( "LOCAL_ANDROID in CapacitorConfig" , LOCAL_ANDROID )
55
66const config : CapacitorConfig = {
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import {isProd} from "common/envs/is-prod";
55export const MAX_DESCRIPTION_LENGTH = 100000
66export const MAX_ANSWER_LENGTH = 240
77
8- export const IS_LOCAL_ANDROID = process . env . NEXT_PUBLIC_LOCAL_ANDROID !== undefined
8+ export const IS_LOCAL_ANDROID = process . env . NEXT_PUBLIC_LOCAL_ANDROID === '1'
99console . log ( 'IS_LOCAL_ANDROID' , IS_LOCAL_ANDROID )
1010
1111export const LOCAL_WEB_DOMAIN = `localhost:3000`
You can’t perform that action at this time.
0 commit comments