-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
33 lines (29 loc) · 909 Bytes
/
vue.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
module.exports = {
chainWebpack: (config) => {
config
.plugin('html')
.tap(args => {
args[0].title = 'homeydash.combined';
args[0].meta = {
viewport: 'width=device-width,initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no',
description: 'Homey Dashboard for iPad/iPhone/e-ink devices'
};
return args;
})
},
pwa: {
name: 'homeydash.combined',
appleMobileWebAppCapable: 'yes',
appleMobileWebAppStatusBarStyle: 'black',
},
transpileDependencies: ['vuetify'],
publicPath: process.env.CONTEXT_PATH ? process.env.CONTEXT_PATH : '/',
pluginOptions: {
i18n: {
locale: 'en',
fallbackLocale: 'en',
localeDir: 'locales',
enableInSFC: true
}
}
};