summaryrefslogtreecommitdiff
path: root/vue.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'vue.config.js')
-rw-r--r--vue.config.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/vue.config.js b/vue.config.js
index e40b01ef..12a723d6 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -16,7 +16,7 @@ module.exports = {
'/': {
target: process.env.BASE_URL,
onProxyRes: proxyRes => {
- // This header is igorned in the browser so removing
+ // This header is ignored in the browser so removing
// it so we don't see warnings in the browser console
delete proxyRes.headers['strict-transport-security'];
}
@@ -39,5 +39,11 @@ module.exports = {
config.plugins.delete('prefetch');
config.plugins.delete('preload');
}
+ },
+ pluginOptions: {
+ i18n: {
+ localeDir: 'locales',
+ enableInSFC: true
+ }
}
};