From 4abddba24ca9bcda2f8da5be649e0d766e2bee99 Mon Sep 17 00:00:00 2001 From: Clove Twilight Date: Sat, 27 Jun 2026 05:49:35 +0100 Subject: [PATCH] fix a typo --- js/ascii.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();