29-05
All checks were successful
Build Roam Site / build (push) Successful in 31s

This commit is contained in:
2026-05-29 08:41:15 +01:00
parent 5d30c8f19e
commit a7285933c3
37 changed files with 1210 additions and 137 deletions

View File

@@ -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;