選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
| 12345678910 |
- /**
- * Returns config.js file from global scope.
- * We can't use version that's being used for native app
- * because the old app uses config from global scope.
- *
- * @returns {Promise<Object>}
- */
- export function loadConfig() {
- return Promise.resolve(window.config);
- }
|