-
Notifications
You must be signed in to change notification settings - Fork 1
/
vue.config.js
87 lines (83 loc) · 1.9 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
const iconSizes = ["16", "32", "96", "192", "512"]
const maskableIconSizes = ["192", "512"]
const manifestIcons = []
iconSizes.forEach(s => {
manifestIcons.push({
src: `/assets/meta/favicon-${s}.webp`,
sizes: `${s}x${s}`,
type: "image/webp"
})
manifestIcons.push({
src: `/assets/meta/favicon-${s}.png`,
sizes: `${s}x${s}`,
type: "image/png"
})
})
maskableIconSizes.forEach(s => {
manifestIcons.push({
src: `/assets/meta/maskable-icon-${s}.webp`,
sizes: `${s}x${s}`,
type: "image/webp",
purpose: "maskable"
})
manifestIcons.push({
src: `/assets/meta/maskable-icon-${s}.png`,
sizes: `${s}x${s}`,
type: "image/png",
purpose: "maskable"
})
})
module.exports = {
css: {
loaderOptions: {
scss: {
prependData: `
@import "@/styles/main.scss";
`
}
}
},
pluginOptions: {
sitemap: {
outputDir: "public",
urls: [
{
loc: "https://unitstats.projectceleste.com",
lastmod: new Date().toISOString()
}
],
defaults: {
lastmod: new Date().toISOString(),
changefreq: "weekly",
priority: 1.0
}
}
},
pwa: {
name: "Unit Builder - Age of Empires Online",
iconPaths: {
favicon32: null,
favicon16: null,
appleTouchIcon: null,
maskIcon: "assets/meta/maskable_icon.png",
msTileImage: null
},
manifestOptions: {
icons: manifestIcons,
background_color: "#488489",
categories: ["gaming"],
description: "Simulate stats and compare any AoEO unit.",
lang: "en-US",
orientation: "portrait",
short_name: "Unit Builder",
start_url: "/",
scope: "/"
},
themeColor: "#488489",
msTileColor: "#488489",
workboxOptions: {
clientsClaim: true,
exclude: [/robots.txt$/, /robots.prod.txt$/, /sitemap.xml$/, /.css.map$/]
}
}
}