-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvue.config.js
43 lines (42 loc) · 1.29 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
'use strict';
module.exports = {
pwa: {
manifestOptions: {
name: "Acosta Repuestos",
short_name: "Acosta Repuestos",
start_url: "./",
display: "standalone",
theme_color: "#ffffff",
icons: [{
'src': './img/icons/192x192.png',
'sizes': '192x192',
'type': 'image/png',
},
{
src: "./img/icons/512x512.png",
sizes: "512x512",
type: "image/png",
purpose: "any maskable",
},
],
iconPaths: {
favicon32: './img/icons/32x32.png',
favicon16: './img/icons/16x16.png',
}
},
themeColor: "#dc3545",
background_color: "#ffffff",
msTileColor: "#ffffff",
appleMobileWebAppCapable: "yes",
appleMobileWebAppStatusBarStyle: "white",
iconPaths: {
maskicon: null,
favicon32: "./img/icons/favicon32.png",
favicon16: "./img/iconss/favicon16.png",
appleTouchIcon: null,
msTileImage: null,
},
// configure the workbox plugin
workboxPluginMode: "GenerateSW",
},
};