diff --git a/VERSION b/VERSION index 47e5d40..c694117 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v5 +v4 diff --git a/js/app.mjs b/js/app.mjs index 40eccb5..ad338ca 100644 --- a/js/app.mjs +++ b/js/app.mjs @@ -33,7 +33,7 @@ class App { }) }//}}} retrieveVersion() {//{{{ - return fetch('/VERSION', {cache: "no-store"}) + return fetch('/VERSION') .then(res=>{ if(res.ok) return res.text() @@ -50,7 +50,7 @@ class App { if(page === null) page = 'start' - return fetch(`/${page}.yaml`, {cache: "no-store"}) + return fetch(`/${page}.yaml`) .then(res=>{ if(res.ok) return res.text()