-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
32 lines (31 loc) · 953 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
// vue.config.js
module.exports = {
pwa: {
name: 'Avalanche Türkiye',
themeColor: '#FF394A',
msTileColor: '#FF394A',
appleMobileWebAppCapable: 'yes',
appleMobileWebAppStatusBarStyle: 'black-translucent',
manifestOptions: {
start_url: '.',
display: 'standalone',
icons: [
{
src: '/img/icons/web-app-manifest-192x192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: '/img/icons/web-app-manifest-512x512.png',
sizes: '512x512',
type: 'image/png',
},
{
src: "/img/icons/favicon.svg", // Ensure this is included
sizes: "any",
type: 'image/svg+xml',
},
],
},
},
};