mirror of
https://github.com/janishutz/MusicPlayerV2.git
synced 2025-11-25 13:04:23 +00:00
Update BarView.vue
Fix bar config caching
This commit is contained in:
@@ -50,7 +50,7 @@
|
|||||||
|
|
||||||
let cashinInDepot = false;
|
let cashinInDepot = false;
|
||||||
|
|
||||||
fetch( '/bar-config.json' ).then( res => {
|
fetch( '/bar-config.json', { cache: "no-store" } ).then( res => {
|
||||||
if ( res.status === 200 ) {
|
if ( res.status === 200 ) {
|
||||||
res.json().then( json => {
|
res.json().then( json => {
|
||||||
const data: FullConfig = json;
|
const data: FullConfig = json;
|
||||||
|
|||||||
Reference in New Issue
Block a user