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)