mirror of
https://codeberg.org/Hyperpipe/Hyperpipe
synced 2025-06-27 12:48:01 +02:00
Fix SW Caching
This commit is contained in:
parent
a9dfca0bf0
commit
99612733a1
5 changed files with 324 additions and 304 deletions
609
package-lock.json
generated
609
package-lock.json
generated
File diff suppressed because it is too large
Load diff
12
package.json
12
package.json
|
@ -10,19 +10,19 @@
|
|||
"check": "prettier --check ."
|
||||
},
|
||||
"dependencies": {
|
||||
"bootstrap-icons": "^1.10.4",
|
||||
"bootstrap-icons": "^1.10.5",
|
||||
"dompurify": "^3.0.2",
|
||||
"mux.js": "^6.3.0",
|
||||
"peerjs": "^1.4.7",
|
||||
"pinia": "^2.0.34",
|
||||
"shaka-player": "^4.3.5",
|
||||
"pinia": "^2.0.35",
|
||||
"shaka-player": "^4.3.6",
|
||||
"sortablejs": "^1.15.0",
|
||||
"vue": "^3.2.38"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vitejs/plugin-vue": "^4.1.0",
|
||||
"prettier": "^2.8.7",
|
||||
"vite": "^4.2.1",
|
||||
"@vitejs/plugin-vue": "^4.2.1",
|
||||
"prettier": "^2.8.8",
|
||||
"vite": "^4.3.3",
|
||||
"vite-plugin-pwa": "^0.14.7"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -92,7 +92,8 @@ body[data-theme*='blur'] #statusbar,
|
|||
body[data-theme*='blur'] .txt-modal,
|
||||
body[data-theme*='blur'] .pl-modal,
|
||||
body[data-theme*='blur'] .modal-box,
|
||||
body[data-theme*='blur'] .popup input[type='text'] {
|
||||
body[data-theme*='blur'] .popup input[type='text'],
|
||||
body[data-theme*='blur'] .us-box {
|
||||
background: var(--color-blur);
|
||||
-webkit-backdrop-filter: blur(10px);
|
||||
backdrop-filter: blur(10px);
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"date": "2023-04-16"
|
||||
"date": "2023-05-01"
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@ export default defineConfig({
|
|||
VitePWA({
|
||||
registerType: 'autoUpdate',
|
||||
workbox: {
|
||||
globPatterns: ['**/*.{css,html,png,svg}', 'manifest.webmanifest'],
|
||||
globPatterns: ['**/*.{css,html,png,svg}', 'manifest.webmanifest', '**/index*.js', '**/shaka*.js'],
|
||||
},
|
||||
manifest: {
|
||||
name: 'Hyperpipe',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue