-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
45 lines (41 loc) · 1.13 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
module.exports = {
css: {
sourceMap: true
},
configureWebpack: {
devtool: 'source-map'
},
pwa: {
workboxPluginMode: 'InjectManifest',
workboxOptions: {
// swSrc is required in InjectManifest mode.
swSrc: './service-worker.js',
},
name: 'TallyJ for Officers',
iconPaths: {
favicon32: 'img/icons/favicon-32x32.png?2',
favicon16: 'img/icons/favicon-16x16.png?2',
appleTouchIcon: 'img/icons/apple-touch-icon.png?2',
maskIcon: 'img/icons/safari-pinned-tab.svg?2',
msTileImage: 'img/icons/mstile-150x150.png?2'
},
themeColor: '#ffffff',
assetsVersion: '2'
},
lintOnSave: undefined,
publicPath: undefined,
outputDir: undefined,
assetsDir: undefined,
runtimeCompiler: undefined,
productionSourceMap: undefined,
parallel: undefined,
pluginOptions: {
i18n: {
locale: 'en',
fallbackLocale: 'en',
localeDir: 'locales',
silentFallbackWarn: true,
enableInSFC: false
}
}
}