This commit is contained in:
Clove 2026-06-27 05:57:58 +01:00
parent defe1960cc
commit 7c9682b1f1
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@
const el = document.getElementById('ascii-art'); const el = document.getElementById('ascii-art');
try { try {
const res = await fetch('./ascii.txt', { cache: 'no-store' }); const res = await fetch('/ascii.txt', { cache: 'no-store' });
if (!res.ok) { if (!res.ok) {
throw new Error('fetch failed: ' + res.status); throw new Error('fetch failed: ' + res.status);