64 lines
2.0 KiB
PHP
64 lines
2.0 KiB
PHP
<?php
|
|
|
|
return [
|
|
'name' => 'FutureWalker',
|
|
'manifest' => [
|
|
'name' => env('APP_NAME', 'FutureWalker'),
|
|
'short_name' => 'FutureWalker',
|
|
'start_url' => '/',
|
|
'background_color' => '#ffffff',
|
|
'theme_color' => '#000000',
|
|
'display' => 'standalone',
|
|
'orientation' => 'portrait',
|
|
'status_bar' => 'black',
|
|
'icons' => [
|
|
'57x57' => [
|
|
'path' => '/pwa/57.png?v=3',
|
|
'purpose' => 'any',
|
|
],
|
|
'72x72' => [
|
|
'path' => '/pwa/72.png?v=3',
|
|
'purpose' => 'any',
|
|
],
|
|
'76x76' => [
|
|
'path' => '/pwa/6.png?v=3',
|
|
'purpose' => 'any',
|
|
],
|
|
'114x114' => [
|
|
'path' => '/pwa/114.png?v=3',
|
|
'purpose' => 'any',
|
|
],
|
|
'120x120' => [
|
|
'path' => '/pwa/120.png?v=3',
|
|
'purpose' => 'any',
|
|
],
|
|
'144x144' => [
|
|
'path' => '/pwa/144.png?v=3',
|
|
'purpose' => 'any',
|
|
],
|
|
'152x152' => [
|
|
'path' => '/pwa/152.png?v=3',
|
|
'purpose' => 'any',
|
|
],
|
|
'180x180' => [
|
|
'path' => '/pwa/180.png?v=3',
|
|
'purpose' => 'any',
|
|
],
|
|
],
|
|
'splash' => [
|
|
'640x1136' => '/pwa/apple-splash-640-1136.png',
|
|
'750x1334' => '/pwa/apple-splash-750-1334.png',
|
|
'828x1792' => '/pwa/apple-splash-828-1792.png',
|
|
'1125x2436' => '/pwa/apple-splash-1125-2436.png',
|
|
'1242x2208' => '/pwa/apple-splash-1242-2208.png',
|
|
'1242x2688' => '/pwa/apple-splash-1242-2688.png',
|
|
'1536x2048' => '/pwa/apple-splash-1536-2048.png',
|
|
'1668x2224' => '/pwa/apple-splash-1668-2224.png',
|
|
'1668x2388' => '/pwa/apple-splash-1668-2388.png',
|
|
'2048x2732' => '/pwa/apple-splash-2048-2732.png',
|
|
],
|
|
'shortcuts' => [],
|
|
'custom' => [],
|
|
],
|
|
];
|