You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
202 B

  1. import ready from '../ready';
  2. export let assetHost = '';
  3. ready(() => {
  4. const cdnHost = document.querySelector('meta[name=cdn-host]');
  5. if (cdnHost) {
  6. assetHost = cdnHost.content || '';
  7. }
  8. });