Files
MulliganMates/app/manifest.ts
T
2026-03-18 12:37:17 +01:00

33 lines
750 B
TypeScript

import type { MetadataRoute } from 'next'
export default function manifest(): MetadataRoute.Manifest {
return {
name: 'MulliganMates',
short_name: 'MulliganMates',
description: 'Social golf score tracking',
start_url: '/dashboard',
display: 'standalone',
background_color: '#ffffff',
theme_color: '#16a34a',
orientation: 'portrait',
icons: [
{
src: '/icons/icon-192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: '/icons/icon-512.png',
sizes: '512x512',
type: 'image/png',
},
{
src: '/icons/icon-512-maskable.png',
sizes: '512x512',
type: 'image/png',
purpose: 'maskable',
},
],
}
}