diff --git a/src/util.js b/src/util.js index 87149b4..a5a9bbf 100644 --- a/src/util.js +++ b/src/util.js @@ -27,7 +27,7 @@ function getLocale(language, region) { if (fs.pathExistsSync(path)) { const selectedLocale = require(path); - const finalLocale = merge(baseLocale, selectedLocale); + const finalLocale = merge({}, baseLocale, selectedLocale); return finalLocale; }