LiveDisplayX / src / app / manifest.ts
manifest.ts
Raw
import type { MetadataRoute } from 'next'
 
export default function manifest(): MetadataRoute.Manifest {
  return {
    name: 'Next.js PWA',
    short_name: 'NextPWA',
    description: 'A Progressive Web App built with Next.js',
    start_url: '/',
    display: 'standalone',
    background_color: '#ffffff',
    theme_color: '#000000',
    icons: [
      {
        src: '/ico.png',
        sizes: '512x512',
        type: 'image/png',
      },
      
    ],
  }
}