14 lines
296 B
TypeScript
14 lines
296 B
TypeScript
import ready from '../ready';
|
|
|
|
export let assetHost = '';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-floating-promises
|
|
ready(() => {
|
|
const cdnHost = document.querySelector<HTMLMetaElement>(
|
|
'meta[name=cdn-host]',
|
|
);
|
|
if (cdnHost) {
|
|
assetHost = cdnHost.content || '';
|
|
}
|
|
});
|