We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 043821d commit cfd3b25Copy full SHA for cfd3b25
client/public/index.html
@@ -34,11 +34,11 @@
34
// <![CDATA[
35
window.RATEL_CDN_MODE = "%CDN_MODE%";
36
window.RATEL_CDN_MAP = {
37
- "cachedjs": "",
38
- "dev": "%CDN_URL%dev/",
39
- "latest": "%CDN_URL%",
40
- "local": "",
41
- };
+ cachedjs: "",
+ dev: "%CDN_URL%dev/",
+ latest: "%CDN_URL%",
+ local: "",
+ };
42
// ]]>
43
</script>
44
</head>
@@ -501,6 +501,10 @@ <h4>
501
codeVersion = urlParams.get('cdn')
502
}
503
504
+ // Temporary solution to force loading latest version
505
+ storedCdn = "local";
506
+ codeVersion = "local";
507
+
508
if (window.RATEL_CDN_MAP.hasOwnProperty(codeVersion)) {
509
if (codeVersion === 'dev') {
510
window.RATEL_DEV_MODE = true;
0 commit comments