-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
34 lines (34 loc) · 890 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
module.exports = {
pwa: {
name: "3k",
themeColor: "#b91d47",
msTileColor: "#b91d47",
manifestPath: "site.webmanifest",
manifestOptions: {
description:
"Find out when the next movie from the Marvel Cinematic Universe will be released.",
icons: [
{
src: "/android-chrome-192x192.png",
sizes: "192x192",
type: "image/png",
purpose: "maskable any",
},
{
src: "/android-chrome-512x512.png",
sizes: "512x512",
type: "image/png",
purpose: "maskable any",
},
],
},
iconPaths: {
faviconSVG: "favicon.svg",
favicon32: "favicon-32x32.png",
favicon16: "favicon-16x16.png",
appleTouchIcon: "apple-touch-icon.png",
maskIcon: "safari-pinned-tab.svg",
msTileImage: "mstile-144x144.png",
},
},
};