26 lines
609 B
TypeScript
26 lines
609 B
TypeScript
import type { MetadataRoute } from 'next';
|
|
|
|
export default function manifest(): MetadataRoute.Manifest {
|
|
return {
|
|
background_color: '#fff',
|
|
description: 'External | Эволюция',
|
|
display: 'standalone',
|
|
icons: [
|
|
{
|
|
sizes: '192x192',
|
|
src: '/android-chrome-192x192.png',
|
|
type: 'image/png',
|
|
},
|
|
{
|
|
sizes: '512x512',
|
|
src: '/android-chrome-512x512.png',
|
|
type: 'image/png',
|
|
},
|
|
],
|
|
name: 'External | Эволюция',
|
|
short_name: 'External | Эволюция',
|
|
start_url: '/',
|
|
theme_color: '#fff',
|
|
};
|
|
}
|