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 670aa32 commit 243eea0Copy full SHA for 243eea0
ui/config-overrides.js
@@ -26,7 +26,12 @@ const {
26
const webpack = require('webpack');
27
28
const path = require("path");
29
-const i18nPath = path.resolve(__dirname, "../i18n");
+
30
+let i18nRoot = "../i18n";
31
+if(process.env.ANSWER_I18N_ROOT){
32
+ i18nRoot = process.env.ANSWER_I18N_ROOT;
33
+}
34
+const i18nPath = path.resolve(__dirname, i18nRoot);
35
36
module.exports = {
37
webpack: function(config, env) {
0 commit comments