Skip to content

Commit 3ef33d7

Browse files
committed
fix: cache buster
1 parent 80e1049 commit 3ef33d7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.eodash
22
node_modules
3-
.DS_Store
3+
.DS_Store
4+
.env

src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ function assignStacEndpoint() {
179179
stacEndpoint,
180180
);
181181

182-
return /** @type {`${string}/catalog.json`} */ (stacEndpoint);
182+
return /** @type {`${string}/catalog.json`} */ (stacEndpoint) + "?t=" + Date.now();
183183
}
184184

185185
if (window.parent !== window) {

0 commit comments

Comments
 (0)