Update BarView.vue

Fix bar config caching
This commit is contained in:
Janis Hutz
2025-11-22 12:40:11 +00:00
committed by GitHub
parent 9a347c9206
commit 69d2db8c37

View File

@@ -50,7 +50,7 @@
let cashinInDepot = false;
fetch( '/bar-config.json' ).then( res => {
fetch( '/bar-config.json', { cache: "no-store" } ).then( res => {
if ( res.status === 200 ) {
res.json().then( json => {
const data: FullConfig = json;