From 895ea6e4e19136c0de949a54b2058d1b47b26e8b Mon Sep 17 00:00:00 2001 From: CrescentLeaf Date: Sun, 14 Dec 2025 00:13:41 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BA=86=E8=B7=AF=E7=94=B1?= =?UTF-8?q?=E7=8A=B6=E6=80=81=E6=8B=BF=E4=B8=8D=E5=88=B0=E5=AE=A2=E6=88=B7?= =?UTF-8?q?=E7=AB=AF=E9=85=8D=E7=BD=AE=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/init.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/init.ts b/client/init.ts index 99f2767..54cfb35 100644 --- a/client/init.ts +++ b/client/init.ts @@ -37,5 +37,5 @@ const onResize = () => { window.addEventListener('resize', onResize) onResize() -const config = await fetch('config.json').then((re) => re.json()) +const config = await fetch('/config.json').then((re) => re.json()) config.title && (document.title = config.title)