const development = { oss: 'https://openapi.dev.bozedu.net', api: 'https://hdpb.dev.bozedu.net/' } const production = { oss: 'https://openapi.bozedu.net', api: 'https://hdpb.bozedu.net/', } function isDev() { // console.log('isDev') return window.location.host.includes('dev') || window.location.host.includes('localhost') } window.globalVariables = isDev() ? (development) : (production)