diff --git a/js/ascii.js b/js/ascii.js index 5bdc302..0e125de 100644 --- a/js/ascii.js +++ b/js/ascii.js @@ -2,7 +2,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); const raw = await res.text();