This commit is contained in:
@@ -193,7 +193,7 @@ async function buildFileTree(container) {
|
||||
let treeData = null;
|
||||
|
||||
try {
|
||||
const res = await fetch('/assets/sidebar-tree.json');
|
||||
const res = await fetch(`/assets/sidebar-tree.json?v=${Date.now()}`, { cache: 'no-store' });
|
||||
if (res.ok) {
|
||||
const json = await res.json();
|
||||
if (Array.isArray(json.tree)) treeData = json.tree;
|
||||
|
||||
Reference in New Issue
Block a user