mirror of
https://github.com/misskey-dev/misskey
synced 2025-09-18 17:20:26 +02:00
22 lines
1 KiB
TypeScript
22 lines
1 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
|
|
const address = new URL(window.document.querySelector<HTMLMetaElement>('meta[property="instance_url"]')?.content || window.location.href);
|
|
const siteName = window.document.querySelector<HTMLMetaElement>('meta[property="og:site_name"]')?.content;
|
|
|
|
export const host = address.host;
|
|
export const hostname = address.hostname;
|
|
export const url = address.origin;
|
|
export const port = address.port;
|
|
export const apiUrl = window.location.origin + '/api';
|
|
export const wsOrigin = window.location.origin;
|
|
export const lang = localStorage.getItem('lang') ?? 'en-US';
|
|
export const langs = _LANGS_;
|
|
export const version = _VERSION_;
|
|
export const instanceName = (siteName === 'Misskey' || siteName == null) ? host : siteName;
|
|
export const ui = localStorage.getItem('ui');
|
|
export const debug = localStorage.getItem('debug') === 'true';
|
|
export const isSafeMode = localStorage.getItem('isSafeMode') === 'true';
|