mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-13 03:43:50 +02:00
30 lines
729 B
JavaScript
30 lines
729 B
JavaScript
import { reactive } from 'vue';
|
|
|
|
import dayjs from 'dayjs';
|
|
|
|
import * as utils from '../shared/utils';
|
|
|
|
const AppDebug = reactive({
|
|
debug: false,
|
|
debugWebSocket: false,
|
|
debugUserDiff: false,
|
|
debugPhotonLogging: false,
|
|
debugGameLog: false,
|
|
debugWebRequests: false,
|
|
debugFriendState: false,
|
|
debugIPC: false,
|
|
debugVrcPlus: false,
|
|
errorNoty: null,
|
|
dontLogMeOut: false,
|
|
endpointDomain: 'https://api.vrchat.cloud/api/1',
|
|
endpointDomainVrchat: 'https://api.vrchat.cloud/api/1',
|
|
websocketDomain: 'wss://pipeline.vrchat.cloud',
|
|
websocketDomainVrchat: 'wss://pipeline.vrchat.cloud'
|
|
});
|
|
|
|
window.$debug = AppDebug;
|
|
window.utils = utils;
|
|
window.dayjs = dayjs;
|
|
|
|
export { AppDebug };
|