feat(webapp): add installable PWA support

This commit is contained in:
2026-03-19 16:40:00 +00:00
parent 65d113046a
commit 22608b80f1
12 changed files with 868 additions and 1 deletions

View File

@@ -2,6 +2,7 @@ import { defineConfig } from 'vitest/config';
import { playwright } from '@vitest/browser-playwright';
import tailwindcss from '@tailwindcss/vite';
import { sveltekit } from '@sveltejs/kit/vite';
import { VitePWA } from 'vite-plugin-pwa';
const backendTarget = process.env.BACKEND_URL ?? 'http://localhost:3000';
const enableProxy = process.env.USE_VITE_PROXY === 'true';
@@ -30,7 +31,52 @@ const proxy = Object.fromEntries(
);
export default defineConfig({
plugins: [tailwindcss(), sveltekit()],
plugins: [
tailwindcss(),
sveltekit(),
VitePWA({
registerType: 'autoUpdate',
includeAssets: ['icons/apple-touch-icon.png', 'icons/pwa-192x192.png', 'icons/pwa-512x512.png'],
manifest: {
name: 'PhoneCam Web Dashboard',
short_name: 'PhoneCam',
description: 'Monitor camera devices, motion events, and recordings from an installable web dashboard.',
theme_color: '#0a0a0c',
background_color: '#0a0a0c',
display: 'standalone',
start_url: '/',
scope: '/',
orientation: 'portrait-primary',
icons: [
{
src: 'icons/pwa-192x192.png',
sizes: '192x192',
type: 'image/png',
purpose: 'any'
},
{
src: 'icons/pwa-512x512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'any'
},
{
src: 'icons/maskable-512x512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'maskable'
}
]
},
workbox: {
globPatterns: ['**/*.{js,css,html,ico,png,svg,webmanifest}'],
navigateFallbackDenylist: [/^\/api\//, /^\/devices/, /^\/device-links/, /^\/streams/, /^\/events/, /^\/recordings/, /^\/videos/, /^\/push-notifications/, /^\/socket\.io\//]
},
devOptions: {
enabled: true
}
})
],
server: {
proxy: enableProxy ? proxy : undefined
},