Compare commits
2 Commits
e7b58fdd63
...
c9ea188e7e
Author | SHA1 | Date | |
---|---|---|---|
|
c9ea188e7e | ||
|
a9101f02c1 |
@ -33,7 +33,7 @@ class App {
|
|||||||
})
|
})
|
||||||
}//}}}
|
}//}}}
|
||||||
retrieveVersion() {//{{{
|
retrieveVersion() {//{{{
|
||||||
return fetch('/VERSION')
|
return fetch('/VERSION', {cache: "no-store"})
|
||||||
.then(res=>{
|
.then(res=>{
|
||||||
if(res.ok)
|
if(res.ok)
|
||||||
return res.text()
|
return res.text()
|
||||||
@ -50,7 +50,7 @@ class App {
|
|||||||
if(page === null)
|
if(page === null)
|
||||||
page = 'start'
|
page = 'start'
|
||||||
|
|
||||||
return fetch(`/${page}.yaml`)
|
return fetch(`/${page}.yaml`, {cache: "no-store"})
|
||||||
.then(res=>{
|
.then(res=>{
|
||||||
if(res.ok)
|
if(res.ok)
|
||||||
return res.text()
|
return res.text()
|
||||||
|
Loading…
Reference in New Issue
Block a user