-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
118 lines (114 loc) · 2.58 KB
/
nuxt.config.ts
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
modules: ['@vite-pwa/nuxt'],
css: [
'~/assets/css/theme.css'
],
app: {
head: {
link: [
{ rel: 'icon', href: '/favicon.png'}
],
htmlAttrs: {
lang: 'en'
}
}
},
pwa: {
registerType: 'autoUpdate',
registerWebManifestInRouteRules: true,
manifest: {
id: 'ch.jsan.kryptos',
name: 'KRYPTOS',
description: 'Explore the mythical crypto puzzle at home',
short_name: 'KRYPTOS',
theme_color: '#505050',
orientation: "any",
related_applications: [],
scope_extensions: [
{origin: "kryptos.jsan.ch"}
],
categories: ["entertainment", "games", "education"],
dir: "auto",
prefer_related_applications: false,
display: "standalone",
display_override: [
"window-controls-overlay"
],
file_handlers: [],
handle_links: "preferred",
edge_side_panel: {},
protocol_handlers: [],
shortcuts: [
{
name: "K1",
url: "/k1",
description: "Open the K1 puzzle"
},
{
name: "K2",
url: "/k2",
description: "Open the K2 puzzle"
},
{
name: "K3",
url: "/k3",
description: "Open the K3 puzzle"
},
{
name: "K4",
url: "/k4",
description: "Open the K4 puzzle"
}
],
launch_handler: {
client_mode: ["navigate-existing", "auto"]
},
icons: [
{
src: 'pwa-512x512.png',
sizes: '512x512',
type: 'image/png'
}
],
screenshots: [
{
src: "pwa-ss-index.png",
sizes: "1920×1388",
type: "image/png",
platform: "wide"
},
{
src: "pwa-ss-k1.png",
sizes: "1920×965",
type: "image/png",
platform: "wide"
},
{
src: "pwa-ss-k2.png",
sizes: "1920×965",
type: "image/png",
platform: "wide"
},
{
src: "pwa-ss-k3.png",
sizes: "1920×965",
type: "image/png",
platform: "wide"
},
{
src: "pwa-ss-k4.png",
sizes: "1920×965",
type: "image/png",
platform: "wide"
}
]
},
workbox: {
globPatterns: ['**/*.{js,css,html,png,svg,ico}'],
}
},
devtools: { enabled: true },
modules: ["@vite-pwa/nuxt"],
compatibilityDate: "2024-09-02"
})