From e2a8f7da62210d17e87737b57c080c33ac0493ed Mon Sep 17 00:00:00 2001 From: EL OUAZIZI Walid <156519881+WalidDevIO@users.noreply.github.com> Date: Thu, 9 Apr 2026 19:13:11 +0200 Subject: [PATCH] Fix fontPath URL in figlet defaults --- src/tools/ascii-text-drawer/ascii-text-drawer.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/ascii-text-drawer/ascii-text-drawer.vue b/src/tools/ascii-text-drawer/ascii-text-drawer.vue index 9a6520a44a..5e22dc01a8 100644 --- a/src/tools/ascii-text-drawer/ascii-text-drawer.vue +++ b/src/tools/ascii-text-drawer/ascii-text-drawer.vue @@ -9,7 +9,7 @@ const output = ref(''); const errored = ref(false); const processing = ref(false); -figlet.defaults({ fontPath: '//unpkg.com/figlet@1.6.0/fonts/' }); +figlet.defaults({ fontPath: '//unpkg.com/figlet@1.6.0/fonts' }); watchEffect(async () => { processing.value = true;