Skip to content

Commit

Permalink
Merge pull request #25 from informaticadiaz/pwa
Browse files Browse the repository at this point in the history
pwa config
  • Loading branch information
informaticadiaz authored Jan 14, 2024
2 parents 4adfe5d + 041c6d8 commit c91e673
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@ export default defineConfig({
manifest: {
name: 'Prensa Obrera',
short_name: 'Prensa',
start_url: '/',
display: 'standalone',
background_color: '#222',
description: 'La Voz de los trabajadores',
theme_color: '#222',
background_color: '#222',
display: 'standalone',
dir: 'ltr', // Agregando la dirección de izquierda a derecha (ltr)
orientation: 'natural', // Agregando la orientación (puedes usar 'any', 'natural', 'landscape', 'portrait', etc.)
lang: 'es-AR',
Expand All @@ -52,7 +53,17 @@ export default defineConfig({
type: 'image/png',
purpose: 'maskable'
}
]
],
prefer_related_applications: true,
categories: [
'politics',
],
display_override: [
'standalone',
'fullscreen',
'window-controls-overlay'
],
id: 'prensa_seccional_la_plata_uf'
},

}),
Expand Down

0 comments on commit c91e673

Please sign in to comment.