Milestone v1.0: FamilySync MVP #1

Merged
luckberg merged 376 commits from gsd/v1.0-milestone into main 2026-06-10 17:39:19 -04:00
5 changed files with 40 additions and 1 deletions
Showing only changes of commit bd8283774d - Show all commits
+4
View File
@@ -4,6 +4,10 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#4A90D9" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="FamilySync" />
<title>FamilySync</title>
</head>
<body>
Binary file not shown.

After

Width:  |  Height:  |  Size: 617 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 699 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

+36 -1
View File
@@ -1,8 +1,43 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { VitePWA } from 'vite-plugin-pwa'
export default defineConfig({
plugins: [react()],
plugins: [
react(),
VitePWA({
registerType: 'autoUpdate',
// ⚠️ CRITICAL: exclude /callback from SW navigation handling (Gate 2 — T-03-20)
// The OIDC authorization-code exchange lands on /callback — if the SW
// intercepts this as a navigation, it serves the cached shell instead of
// letting the server process the authorization code exchange (login loop).
workbox: {
navigateFallback: '/index.html',
navigateFallbackDenylist: [
/^\/callback/, // OIDC redirect endpoint — must reach the server
/^\/api\//, // API calls — never serve from cache
/^\/health/, // Health endpoint
],
// No /api caching — runtimeCaching: [] means all API calls fall through to network
runtimeCaching: [],
},
manifest: {
name: 'FamilySync',
short_name: 'FamilySync',
description: 'Family calendar and lists',
theme_color: '#4A90D9',
background_color: '#ffffff',
display: 'standalone',
scope: '/',
start_url: '/',
icons: [
{ src: '/icon-192.png', sizes: '192x192', type: 'image/png' },
{ src: '/icon-512.png', sizes: '512x512', type: 'image/png' },
{ src: '/icon-512.png', sizes: '512x512', type: 'image/png', purpose: 'maskable' },
],
},
}),
],
server: {
proxy: {
'/health': 'http://localhost:3000',