-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
35 lines (35 loc) · 1011 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
32
33
34
35
module.exports = {
transpileDependencies: [
'vuetify'
],
pwa: {
short_name: "a2s-dms-prescription",
name: "A2S DMS Prescription",
icon: [{
"src": "/img/icons/android-chrome-192x192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "/img/icons/msapplication-icon-144x144.png",
"type": "image/png",
"sizes": "144x144"
},
{
"src": "/img/icons/favicon-32x32.png",
"type": "image/png",
"sizes": "32x32"
}
],
start_url: "/",
background_color: "#63B884",
display: "standalone",
display_override: ["window-controls-overlay"],
theme_color: "#63B884",
scope: "/",
offline_enabled: true,
workboxOptions: {
exclude: ['_redirects'],
}
}
}