From 86fc8c08dadbc4189cb1d69383038788dc7dff5a Mon Sep 17 00:00:00 2001 From: kaubu <29447633+kaubu@users.noreply.github.com> Date: Fri, 1 Dec 2023 08:45:12 +0000 Subject: [PATCH] v1.1.7 - fetch test --- src/views/Generator.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Generator.vue b/src/views/Generator.vue index 4ef0729..9ef5d71 100644 --- a/src/views/Generator.vue +++ b/src/views/Generator.vue @@ -126,7 +126,7 @@ interface NamesDict { } async function getNames() { - const res = await fetch("/anglish_given_names.json"); + const res = await fetch("/name-generator/anglish_given_names.json"); await res.json().then((data: NamesDict) => { names.value = data; console.log("Loaded names!");