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 fd6e927 commit 7a803d4Copy full SHA for 7a803d4
js/loader.js
@@ -63,6 +63,8 @@ if (typeof requirejs !== "undefined") {
63
});
64
}
65
66
+ const APP_VERSION = "3.4.1";
67
+
68
async function initializeI18next() {
69
return new Promise((resolve, reject) => {
70
i18next.use(i18nextHttpBackend).init(
@@ -75,9 +77,7 @@ if (typeof requirejs !== "undefined") {
75
77
escapeValue: false
76
78
},
79
backend: {
- // REMOVED: Date.now() cache buster.
- // Using a static version or relying on browser cache is better for performance.
80
- loadPath: "locales/{{lng}}.json"
+ loadPath: "locales/{{lng}}.json?v=" + APP_VERSION
81
82
83
function (err, t) {
0 commit comments