-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvite.config.js
More file actions
67 lines (66 loc) · 1.93 KB
/
Copy pathvite.config.js
File metadata and controls
67 lines (66 loc) · 1.93 KB
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
import { defineConfig } from 'vite';
import { VitePWA } from 'vite-plugin-pwa';
export default defineConfig({
base: '/Notenotes/',
build: {
// Sheet music/abcjs is code-split on demand. Keep a budget that still
// catches a return to the former 1.18 MB startup bundle without warning
// on the intentionally deferred abcjs chunk.
chunkSizeWarningLimit: 700,
},
plugins: [
VitePWA({
registerType: 'autoUpdate',
includeAssets: ['favicon.svg'],
manifest: {
name: 'Notenotes',
short_name: 'Notenotes',
description: 'A rapid-capture musical sketchpad. Jot down melodies, basslines, rhythms, and vocals instantly.',
theme_color: '#1a1a1a',
background_color: '#111111',
display: 'standalone',
orientation: 'any',
start_url: '/Notenotes/',
icons: [
{
src: 'icons/icon-192.png',
sizes: '192x192',
type: 'image/png'
},
{
src: 'icons/icon-512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'any maskable'
}
]
},
workbox: {
globPatterns: ['**/*.{js,css,html,svg,png,woff2}'],
globIgnores: ['**/DiagnosticsPanel-*'],
runtimeCaching: [
{
urlPattern: /^https:\/\/fonts\.googleapis\.com\/.*/i,
handler: 'CacheFirst',
options: {
cacheName: 'google-fonts-cache',
expiration: { maxEntries: 10, maxAgeSeconds: 60 * 60 * 24 * 365 }
}
},
{
urlPattern: /^https:\/\/fonts\.gstatic\.com\/.*/i,
handler: 'CacheFirst',
options: {
cacheName: 'gstatic-fonts-cache',
expiration: { maxEntries: 10, maxAgeSeconds: 60 * 60 * 24 * 365 }
}
}
]
}
})
],
server: {
port: 5173,
open: true
}
});