-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
49 lines (49 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
46
47
48
49
module.exports = {
filenameHashing: false,
outputDir: './dist',
pwa: {
name: 'Miakapp',
themeColor: '#ffbf01',
msTileColor: '#ffbf01',
workboxPluginMode: 'InjectManifest',
assetsVersion: '3.0',
appleMobileWebAppCapable: 'yes',
appleMobileWebAppStatusBarStyle: 'blue',
manifestOptions: {
start_url: './h',
background_color: '#ffbf01',
display: 'standalone',
icons: [
{
src: './icons/512.png',
sizes: '512x512',
type: 'image/png',
},
{
src: './icons/256.png',
sizes: '256x256',
type: 'image/png',
},
{
src: './icons/128.png',
sizes: '128x128',
type: 'image/png',
},
],
gcm_sender_id: '103953800507',
},
iconPaths: {
msTileImage: './icons/mstile-256.png',
appleTouchIcon: './icons/128.png',
favicon32: './icons/favicon-32.png',
favicon16: './icons/favicon-16.png',
maskIcon: './icons/logo.svg',
},
workboxOptions: {
swSrc: 'sw.js',
},
},
devServer: {
disableHostCheck: true,
},
};