~cytrogen/masto-fe

ref: adf075d19f1aaaa1ca017a067be8e1afa991c4d9 masto-fe/app/javascript/flavours/glitch/utils/config.js -rw-r--r-- 202 bytes
adf075d1 — Zoë Bijl [bugfix] Fix linter issues (#85) 6 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
import ready from '../ready';

export let assetHost = '';

ready(() => {
  const cdnHost = document.querySelector('meta[name=cdn-host]');
  if (cdnHost) {
    assetHost = cdnHost.content || '';
  }
});