UNPKG
react-native-code-sync
Version:
latest (1.0.61)
1.0.61
1.0.60
1.0.59
1.0.58
1.0.57
1.0.56
1.0.55
1.0.54
1.0.53
1.0.52
1.0.51
React-native plugin for the code-sync functionality on live via OTA (Over-the-air)
react-native-code-sync
/
src
/
config.js
11 lines
(9 loc)
•
252 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
let
globalConfig = {
enableInDevMode
:
false
,
baseUrl
:
''
,
checkForUpdateEndPoint
:
''
};
export
const
setCodeSyncConfig
= (
config = {}
) => { globalConfig = { ...globalConfig, ...config }; };
export
const
getCodeSyncConfig
= (
) => globalConfig;