Implementar scope extensions y link handling para PWAs
All checks were successful
build-and-deploy / build-and-deploy (push) Successful in 56s

- Agregar scope_extensions en manifest para capturar navegaciones a otros subdominios
- Configurar Traefik para servir archivos .well-known sin autenticación
- Documentar configuración completa del sistema
This commit is contained in:
2025-10-17 02:14:02 -06:00
parent 196108752a
commit 147fa4df32
3 changed files with 277 additions and 1 deletions

View File

@@ -43,6 +43,27 @@ export default defineNuxtConfig({
start_url: '/?source=pwa',
// Capturar todos los enlaces que apunten a esta app
capture_links: 'existing-client-navigate',
// Extender scope a otros subdominios de Nucleo V3
scope_extensions: [
{
origin: "https://musica.nucleoriofrio.com"
},
{
origin: "https://docs.nucleoriofrio.com"
},
{
origin: "https://analitica.nucleoriofrio.com"
},
{
origin: "https://seguidordelotes.nucleoriofrio.com"
},
{
origin: "https://whisper.nucleoriofrio.com"
},
{
origin: "https://amigos.nucleoriofrio.com"
}
],
icons: [
{
src: '/icon-192x192.png',