diff --git a/MusicPlayerV2-GUI/src/views/BarView.vue b/MusicPlayerV2-GUI/src/views/BarView.vue index d043efe..a57c7d7 100644 --- a/MusicPlayerV2-GUI/src/views/BarView.vue +++ b/MusicPlayerV2-GUI/src/views/BarView.vue @@ -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;