diff --git a/ascii/index.html b/ascii/index.html index 33b1f15..2e63253 100644 --- a/ascii/index.html +++ b/ascii/index.html @@ -69,7 +69,7 @@ const el = document.getElementById('ascii-art'); try { - const res = await fetch('./ascii.txt', { cache: 'no-store' }); + const res = await fetch('/ascii.txt', { cache: 'no-store' }); if (!res.ok) { throw new Error('fetch failed: ' + res.status);