From b610ed77a5de9a075ca8b100b59cf6c5fda2944b Mon Sep 17 00:00:00 2001 From: Simounet Date: Sun, 6 Jan 2019 23:05:55 +0100 Subject: [PATCH] manifest.json added for webapp declaration --- public/manifest.json | 20 ++++++++++++++++++++ resources/views/layouts/app.blade.php | 1 + 2 files changed, 21 insertions(+) create mode 100644 public/manifest.json diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 00000000..03aeb564 --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,20 @@ +{ + "name": "PixelFed", + "short_name": "PixelFed", + "start_url": ".", + "display": "standalone", + "background_color": "#f5f8fa", + "description": "Federated Image Sharing", + "icons": [ + { + "src": "img/favicon.png", + "type": "image/png", + "sizes": "153x152" + }, + { + "src": "img/pixelfed-icon-color.svg", + "type": "image/svg", + "sizes": "50x50" + } + ] +} diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php index f461b395..dfbe77a5 100644 --- a/resources/views/layouts/app.blade.php +++ b/resources/views/layouts/app.blade.php @@ -10,6 +10,7 @@ {{ $title ?? config('app.name', 'Laravel') }} +