We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9de26ed commit 2cf1aabCopy full SHA for 2cf1aab
1 file changed
src/vector/getconfig.js
@@ -37,7 +37,7 @@ export async function getVectorConfig(relativeLocation) {
37
function getConfig(configJsonFilename) {
38
return new Promise(function(resolve, reject) {
39
request(
40
- { method: "GET", url: configJsonFilename },
+ { method: "GET", url: configJsonFilename, qs: { cachebuster: Date.now() } },
41
(err, response, body) => {
42
try {
43
if (err || response.status < 200 || response.status >= 300) {
0 commit comments