25 lines
591 B
TypeScript
25 lines
591 B
TypeScript
import type { MetadataRoute } from 'next';
|
|
|
|
export default function manifest(): MetadataRoute.Manifest {
|
|
return {
|
|
name: 'Mercado de Vida — TPV',
|
|
short_name: 'TPV MdV',
|
|
description: 'Terminal punto de venta Mercado de Vida',
|
|
start_url: '/',
|
|
scope: '/',
|
|
display: 'standalone',
|
|
orientation: 'landscape',
|
|
background_color: '#111827',
|
|
theme_color: '#70AD47',
|
|
categories: ['business', 'shopping'],
|
|
icons: [
|
|
{
|
|
src: '/images/logo-main.png',
|
|
sizes: 'any',
|
|
type: 'image/png',
|
|
purpose: 'any',
|
|
},
|
|
],
|
|
};
|
|
}
|