feat(app): video player, guide page, free films, PWA cache fix

- Add VideoPlayerOverlay component for free film playback
- Add GuidePage with interactive node setup walkthrough
- Add freeFilms data catalog with public domain films
- Enhance PlayerBar with video support and queue management
- Add video player store for overlay state management
- Refactor music search plugin (Jamendo integration cleanup)
- Add PWA cache version purge mechanism in main.ts
- Add PWA icon cache fix skill for Brave/Chrome
- Improve content grids: loading states, image fallbacks
- Enhance useArchy composable with node context
- Update useNostr with relay pool management
- Expand chat store with guide conversation support
- Add test fixtures for guide and node demo prompts

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Dorian
2026-03-06 00:56:39 +00:00
co-authored by Claude Opus 4.6
parent c84c0fb424
commit b77c93607a
32 changed files with 3027 additions and 413 deletions
+19 -3
View File
@@ -23,7 +23,13 @@ export default defineConfig({
fsPlugin(),
VitePWA({
registerType: 'autoUpdate',
includeAssets: ['favicon.svg', 'icon.svg', 'apple-touch-icon-180x180.png'],
includeAssets: [
'favicon.svg',
'icon.svg',
'apple-touch-icon-180x180.png',
'pwa-192x192.png',
'pwa-512x512.png',
],
manifest: {
id: './',
name: 'AIUI',
@@ -58,7 +64,9 @@ export default defineConfig({
],
},
workbox: {
globPatterns: ['**/*.{js,css,html,svg,png,woff2}'],
globPatterns: ['**/*.{js,css,html,svg,woff2}'],
globIgnores: ['**/assets/img/films/**', '**/assets/img/tv/**'],
maximumFileSizeToCacheInBytes: 5 * 1024 * 1024,
runtimeCaching: [
{
urlPattern: /^https:\/\/api\.anthropic\.com\/.*/i,
@@ -100,10 +108,18 @@ export default defineConfig({
expiration: { maxEntries: 200, maxAgeSeconds: 604800 },
},
},
{
urlPattern: /^https:\/\/d12wklypp119aj\.cloudfront\.net\/image\/.*/i,
handler: 'CacheFirst',
options: {
cacheName: 'wavlake-images',
expiration: { maxEntries: 300, maxAgeSeconds: 604800 },
},
},
],
},
devOptions: {
enabled: false,
enabled: true,
},
}),
],