This commit is contained in:
2026-05-17 02:24:43 +07:00
parent 58c402b0f3
commit 578e22b8f0
2 changed files with 5 additions and 2 deletions
+2
View File
@@ -29,6 +29,8 @@
/* semantic color variables for this project */ /* semantic color variables for this project */
:root { :root {
color-scheme: only dark;
--color-background: var(--vt-c-white); --color-background: var(--vt-c-white);
--color-background-soft: var(--vt-c-white-soft); --color-background-soft: var(--vt-c-white-soft);
--color-background-mute: var(--vt-c-white-mute); --color-background-mute: var(--vt-c-white-mute);
+3 -2
View File
@@ -71,8 +71,9 @@ export const apiGetGame = async (login: string, password: string): Promise<Game>
} }
export function getApiUrl(path: string) { export function getApiUrl(path: string) {
const url = 'http://' + window.location.host.split(':')[0] + ':8090' + path // const url = 'http://' + window.location.host.split(':')[0] + ':8090' + path
return url // return url
return 'https://evening-detective-api.crabs-games.art' + path
} }
export function encodeUTF8ToBase64(s: string) { export function encodeUTF8ToBase64(s: string) {