]> BookStack Code Mirror - bookstack/blob - app/Config/manifest.php
640ba70e63b45ab2cc870fad1d81c6e74f3149ee
[bookstack] / app / Config / manifest.php
1 <?php
2 return [
3     "name" => (env('APP_NAME' | 'BookStack') ??'BookStack' ), 
4     "short_name" => "bookstack", 
5     "start_url" => "./", 
6     "scope" => ".", 
7     "display" => "standalone", 
8     "background_color" => "#fff", 
9     "description" =>( env('APP_NAME' | 'BookStack') ??'BookStack'), 
10     "categories" => [
11         "productivity", 
12         "lifestyle" 
13     ], 
14     "launch_handler" => [
15         "client_mode" => "focus-existing" 
16     ], 
17     "orientation" => "portrait", 
18     "icons" => [
19         [
20             "src" => "/icon-64.png", 
21             "sizes" => "64x64", 
22             "type" => "image/png" 
23         ], 
24         [
25             "src" => "/icon-32.png", 
26             "sizes" => "32x32", 
27             "type" => "image/png" 
28         ], 
29         [
30             "src" => "/icon-128.png", 
31             "sizes" => "128x128", 
32             "type" => "image/png" 
33         ], 
34         [
35             "src" => "icon-180.png", 
36             "sizes" => "180x180", 
37             "type" => "image/png" 
38         ], 
39         [
40             "src" => "icon.png", 
41             "sizes" => "256x256", 
42             "type" => "image/png" 
43         ], 
44         [
45             "src" => "icon.ico", 
46             "sizes" => "48x48", 
47             "type" => "image/vnd.microsoft.icon" 
48         ], 
49         [
50             "src" => "favicon.ico", 
51             "sizes" => "48x48", 
52             "type" => "image/vnd.microsoft.icon" 
53         ],
54     ],
55 ];