Manifest Tweaks
This commit is contained in:
parent
601491b275
commit
08ea97fd83
|
@ -148,13 +148,13 @@ class HomeController extends Controller
|
||||||
public function manifest()
|
public function manifest()
|
||||||
{
|
{
|
||||||
$manifest = [
|
$manifest = [
|
||||||
"name" => config('app.name' | 'BookStack'),
|
"name" => (config('app.name' | 'BookStack') ??'BookStack' ),
|
||||||
"short_name" => "bookstack",
|
"short_name" => "bookstack",
|
||||||
"start_url" => "/",
|
"start_url" => "./",
|
||||||
"scope" => "/",
|
"scope" => ".",
|
||||||
"display" => "standalone",
|
"display" => "standalone",
|
||||||
"background_color" => setting('app-color'),
|
"background_color" => setting('app-color'),
|
||||||
"description" => config('app.name' | 'BookStack'),
|
"description" =>( config('app.name' | 'BookStack') ??'BookStack'),
|
||||||
"categories" => [
|
"categories" => [
|
||||||
"productivity",
|
"productivity",
|
||||||
"lifestyle"
|
"lifestyle"
|
||||||
|
|
Loading…
Reference in New Issue