config.ts 296 B

12345678910111213
  1. import ready from '../ready';
  2. export let assetHost = '';
  3. // eslint-disable-next-line @typescript-eslint/no-floating-promises
  4. ready(() => {
  5. const cdnHost = document.querySelector<HTMLMetaElement>(
  6. 'meta[name=cdn-host]',
  7. );
  8. if (cdnHost) {
  9. assetHost = cdnHost.content || '';
  10. }
  11. });