-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvue.config.js
41 lines (41 loc) · 1.03 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
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
pwa: {
name: 'Echgram design by Hosein Sedaqat',
themeColor: "#4DBA87",
iconPaths: {
favicon32: 'img/icons/icon-72x72.png',
favicon16: 'img/icons/icon-72x72.png',
appleTouchIcon: 'img/icons/icon-72x72.png',
msTileImage: 'img/icons/icon-144x144.png'
},
manifestOptions: {
background_color: "#fff",
icons: [
{
src: "img/icons/icon-192x192.png",
sizes: "192x192",
type: "image/png"
},
{
src: "img/icons/icon-512x512.png",
sizes: "512x512",
type: "image/png"
},
{
src: "img/icons/icon-192x192.png",
sizes: "192x192",
type: "image/png",
purpose: "maskable"
},
{
src: "img/icons/icon-512x512.png",
sizes: "512x512",
type: "image/png",
purpose: "maskable"
}
]
}
}
})