Add (pwa)
This commit is contained in:
67
config/laravelpwa.php
Normal file
67
config/laravelpwa.php
Normal file
@@ -0,0 +1,67 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'name' => 'EchoScoop',
|
||||
'manifest' => [
|
||||
'name' => env('APP_NAME', 'EchoScoop'),
|
||||
'short_name' => 'PWA',
|
||||
'start_url' => '/',
|
||||
'background_color' => '#ffffff',
|
||||
'theme_color' => '#000000',
|
||||
'display' => 'standalone',
|
||||
'orientation' => 'any',
|
||||
'status_bar' => 'black',
|
||||
'icons' => [
|
||||
'48x48' => [
|
||||
'path' => '/pwa/icon-48x48.png',
|
||||
'purpose' => 'any',
|
||||
],
|
||||
'72x72' => [
|
||||
'path' => '/pwa/icon-72x72.png',
|
||||
'purpose' => 'any',
|
||||
],
|
||||
'96x96' => [
|
||||
'path' => '/pwa/icon-96x96.png',
|
||||
'purpose' => 'any',
|
||||
],
|
||||
'128x128' => [
|
||||
'path' => '/pwa/icon-128x128.png',
|
||||
'purpose' => 'any',
|
||||
],
|
||||
'144x144' => [
|
||||
'path' => '/pwa/icon-144x144.png',
|
||||
'purpose' => 'any',
|
||||
],
|
||||
'152x152' => [
|
||||
'path' => '/pwa/icon-152x152.png',
|
||||
'purpose' => 'any',
|
||||
],
|
||||
'192x192' => [
|
||||
'path' => '/pwa/icon-192x192.png',
|
||||
'purpose' => 'any',
|
||||
],
|
||||
'384x384' => [
|
||||
'path' => '/pwa/icon-384x384.png',
|
||||
'purpose' => 'any',
|
||||
],
|
||||
'512x512' => [
|
||||
'path' => '/pwa/icon-512x512.png',
|
||||
'purpose' => 'any',
|
||||
],
|
||||
],
|
||||
'splash' => [
|
||||
'640x1136' => '/pwa/apple-splash-640x1136.png',
|
||||
'750x1334' => '/pwa/apple-splash-750x1334.png',
|
||||
'828x1792' => '/pwa/apple-splash-828x1792.png',
|
||||
'1125x2436' => '/pwa/apple-splash-1125x2436.png',
|
||||
'1242x2208' => '/pwa/apple-splash-1242x2208.png',
|
||||
'1242x2688' => '/pwa/apple-splash-1242x2688.png',
|
||||
'1536x2048' => '/pwa/apple-splash-1536x2048.png',
|
||||
'1668x2224' => '/pwa/apple-splash-1668x2224.png',
|
||||
'1668x2388' => '/pwa/apple-splash-1668x2388.png',
|
||||
'2048x2732' => '/pwa/apple-splash-2048x2732.png',
|
||||
],
|
||||
'shortcuts' => [],
|
||||
'custom' => [],
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user