-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
43 lines (43 loc) · 1.02 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
module.exports = {
pwa: {
name: "cleep",
themeColor: "#ffffff",
msTileColor: "#ffffff",
appleMobileWebAppCapable: "yes",
appleMobileWebAppStatusBarStyle: "white",
manifestOptions: {
share_target: {
action: "/_share-target",
enctype: "multipart/form-data",
method: "POST",
params: {
title: "name",
text: "description",
url: "link",
files: [
{
name: "media",
accept: [
"audio/*",
"image/*",
"video/*",
"application/*",
"text/*",
"font/*",
],
},
],
},
},
start_url: ".",
display: "standalone",
background_color: "#000000",
},
workboxPluginMode: "InjectManifest",
workboxOptions: {
// swSrc is required in InjectManifest mode.
swSrc: "./src/service-worker.js",
// ...other Workbox options...
},
},
};