diff --git a/index.js b/index.js index 9d2feec..a6e4c9b 100644 --- a/index.js +++ b/index.js @@ -550,7 +550,7 @@ const displayFile = async (filename, container) => { } const displayList = async (indexFile, containerId) => { - const response = await fetch(indexFile) + const response = await fetch(indexFile, { cache: "no-cache" }) const filenames = await response.json() const container = document.getElementById(containerId) for (const filename of filenames) {