Skip to content

Commit

Permalink
feat: add pwa manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
zanfee committed Mar 24, 2024
1 parent fbcfcf0 commit 458f4a2
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ useHead({
})
useSeoMeta({
author: 'Schachfreunde Heilbronn-Biberach 1978 e.V.',
description: 'Schachfreunde Heilbronn-Biberach 1978 e.V. - Der Schachverein im Heilbronner Stadtteil Biberach',
author: 'Schachfreunde Heilbronn-Biberach 1978 e. V.',
description: 'Schachfreunde Heilbronn-Biberach 1978 e. V. - Der Schachverein im Heilbronner Stadtteil Biberach',
robots: 'index, follow',
})
Expand Down
31 changes: 30 additions & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,36 @@ export default defineNuxtConfig({
},
},
pwa: {

manifest: {
name: 'Schachfreunde Heilbronn-Biberach 1978 e. V.',
short_name: 'SF HN-Biberach',
description: 'Der Schachverein im Heilbronner Stadtteil Biberach',
theme_color: '#171717',
icons: [
{
src: 'pwa-64x64.png',
sizes: '64x64',
type: 'image/png',
},
{
src: 'pwa-192x192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: 'pwa-512x512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'any',
},
{
src: 'maskable-icon-512x512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'maskable',
},
],
},
},
ui: {
icons: [
Expand Down

0 comments on commit 458f4a2

Please sign in to comment.