Skip to content

Commit

Permalink
feat: Remove PWA support
Browse files Browse the repository at this point in the history
  • Loading branch information
abourtnik committed Dec 15, 2023
1 parent d029419 commit 3a56425
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 25 deletions.
20 changes: 0 additions & 20 deletions public/manifest.json

This file was deleted.

5 changes: 2 additions & 3 deletions resources/views/components/layout.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,14 @@
<link rel="apple-touch-icon" sizes="180x180" href="{{asset('/images/icons/apple-touch-icon.png')}}">
<link rel="icon" type="image/png" sizes="32x32" href="{{asset('/images/icons/favicon-32x32.png')}}">
<link rel="icon" type="image/png" sizes="16x16" href="{{asset('/images/icons/favicon-16x16.png')}}">
<link rel="manifest" href="{{asset('/manifest.json')}}"/>

<meta name="csrf-token" content="{{ csrf_token() }}">
@auth()
<meta name="user_id" content="{{auth()->user()->id}}">
<meta name="user_id" content="{{auth()->user()->id}}">
@endauth

@if ($attributes->get('statistics', false) && config('app.statistics_enabled'))
<script async defer data-website-id="32676102-17e3-4534-9023-f3aa1eb8300a" src="https://stats.antonbourtnik.fr/umami.js"></script>
<script async defer data-website-id="32676102-17e3-4534-9023-f3aa1eb8300a" src="https://stats.antonbourtnik.fr/umami.js"></script>
@endif

@vite(['resources/js/app.js'])
Expand Down
1 change: 0 additions & 1 deletion resources/views/layouts/embed.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
<link rel="apple-touch-icon" sizes="180x180" href="{{asset('/images/icons/apple-touch-icon.png')}}">
<link rel="icon" type="image/png" sizes="32x32" href="{{asset('/images/icons/favicon-32x32.png')}}">
<link rel="icon" type="image/png" sizes="16x16" href="{{asset('/images/icons/favicon-16x16.png')}}">
<link rel="manifest" href="{{asset('/manifest.json')}}"/>

<meta name="robots" content="noindex">

Expand Down
1 change: 0 additions & 1 deletion resources/views/videos/embed/public.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
<link rel="apple-touch-icon" sizes="180x180" href="{{asset('/images/icons/apple-touch-icon.png')}}">
<link rel="icon" type="image/png" sizes="32x32" href="{{asset('/images/icons/favicon-32x32.png')}}">
<link rel="icon" type="image/png" sizes="16x16" href="{{asset('/images/icons/favicon-16x16.png')}}">
<link rel="manifest" href="{{asset('/manifest.json')}}"/>

<meta name="robots" content="noindex">

Expand Down

0 comments on commit 3a56425

Please sign in to comment.