Иконки для pwa
BIN
frontend/public/assets/icons/icon-128x128.png
Normal file
After Width: | Height: | Size: 5.5 KiB |
BIN
frontend/public/assets/icons/icon-144x144.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
BIN
frontend/public/assets/icons/icon-152x152.png
Normal file
After Width: | Height: | Size: 6.7 KiB |
BIN
frontend/public/assets/icons/icon-192x192.png
Normal file
After Width: | Height: | Size: 9 KiB |
BIN
frontend/public/assets/icons/icon-384x384.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
frontend/public/assets/icons/icon-512x512.png
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
frontend/public/assets/icons/icon-72x72.png
Normal file
After Width: | Height: | Size: 3 KiB |
BIN
frontend/public/assets/icons/icon-96x96.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 6.2 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 17 KiB |
|
@ -9,7 +9,48 @@ const manifest = {
|
|||
name: 'NQuest',
|
||||
short_name: 'NQuest',
|
||||
description: 'NQuest - платформа для ARG игр.',
|
||||
icons: [],
|
||||
icons: [
|
||||
{
|
||||
src: 'assets/icons/icon-72x72.png',
|
||||
sizes: '72x72',
|
||||
type: 'image/png'
|
||||
},
|
||||
{
|
||||
src: 'assets/icons/icon-96x96.png',
|
||||
sizes: '96x96',
|
||||
type: 'image/png'
|
||||
},
|
||||
{
|
||||
src: 'assets/icons/icon-128x128.png',
|
||||
sizes: '128x128',
|
||||
type: 'image/png'
|
||||
},
|
||||
{
|
||||
src: 'assets/icons/icon-144x144.png',
|
||||
sizes: '144x144',
|
||||
type: 'image/png'
|
||||
},
|
||||
{
|
||||
src: 'assets/icons/icon-152x152.png',
|
||||
sizes: '152x152',
|
||||
type: 'image/png'
|
||||
},
|
||||
{
|
||||
src: 'assets/icons/icon-192x192.png',
|
||||
sizes: '192x192',
|
||||
type: 'image/png'
|
||||
},
|
||||
{
|
||||
src: 'assets/icons/icon-384x384.png',
|
||||
sizes: '384x384',
|
||||
type: 'image/png'
|
||||
},
|
||||
{
|
||||
src: 'assets/icons/icon-512x512.png',
|
||||
sizes: '512x512',
|
||||
type: 'image/png'
|
||||
}
|
||||
],
|
||||
theme_color: '#fb923c',
|
||||
background_color: '#171e26',
|
||||
display: 'standalone',
|
||||
|
|