Skip to content

Commit

Permalink
Fix manifest & healthcheck css paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Bubka committed Nov 27, 2024
1 parent 435e0ec commit 3ef40e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/views/health.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ config('app.name', 'Laravel') }}</title>
<!-- Styles -->
<link rel="stylesheet" href="/healthcheck.css"></link>
<link rel="stylesheet" href="{{ url('healthcheck.css') }}"></link>
</head>
<body class="antialiased">
<div class="relative sm:flex sm:justify-center sm:items-center min-h-screen bg-gray-100 selection:bg-red-500 selection:text-white">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/landing.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<link rel="icon" type="image/png" href="{{ asset('favicon.png') }}" />
<link rel="apple-touch-icon" href="{{ asset('favicon_lg.png') }}" />
<link rel="apple-touch-icon-precomposed" href="{{ asset('favicon_lg.png') }}" />
<link rel="manifest" href="/manifest.json">
<link rel="manifest" href="{{ url('manifest.json') }}">

</head>
<body>
Expand Down

0 comments on commit 3ef40e8

Please sign in to comment.