-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfavicons.config.js
57 lines (48 loc) · 1000 Bytes
/
favicons.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
50
51
52
53
54
55
56
57
const color = '#1E1E1E'
const iconsProps = {
background: color,
mask: true,
offset: 5,
}
module.exports = {
appName: 'KMB Motors',
appShortName: 'KMB Motors',
appDescription: 'Our large selection ensure that we have a vehicle just for you. Whether you are looking for a sedan, coupe, truck, or SUV. We look forward to seeing you soon!',
developerName: '',
developerURL: '',
path: '/favicons/',
background: color,
theme_color: color,
appleStatusBarStyle: 'default',
scope: '/',
start_url: '/',
display: 'standalone',
orientation: 'portrait',
logging: false,
html: 'icons.html',
pipeHTML: true,
replace: true,
icons: {
android: {
...iconsProps,
},
appleIcon: {
...iconsProps,
},
appleStartup: {
...iconsProps,
offset: 10
},
favicons: {
...iconsProps,
},
firefox: {
...iconsProps,
offset: 10,
overlayGlow: false
},
windows: {
...iconsProps,
},
}
}