-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvue.config.js
41 lines (40 loc) · 1.11 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
module.exports = {
transpileDependencies: ["vuetify"],
pwa: {
name: "Waktu Sembahyang Brunei",
themeColor: '#455A64',
msTileColor: '#000000',
appleMobileWebAppCapable: 'yes',
appleMobileWebAppStatusBarStyle: 'black',
manifestOptions: {
name: "Waktu Sembahyang Brunei",
short_name: 'WSB',
display: "standalone",
orientation: "portrait-primary",
theme_color: "#455A64",
background_color: "#78909C",
workboxOptions: {
exclude: [/_redirects/]
},
icons: [
{
"src": "/img/icons/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/img/icons/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
},
iconPaths: {
favicon32: 'img/icons/favicon-32x32.png',
favicon16: 'img/icons/favicon-16x16.png',
appleTouchIcon: 'img/icons/apple-touch-icon-152x152.png',
maskIcon: 'img/icons/safari-pinned-tab.svg',
msTileImage: 'img/icons/msapplication-icon-144x144.png'
}
}
};