mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 13:33:21 -08:00
13 lines
296 B
TypeScript
13 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 || '';
|
|
}
|
|
});
|