Browse Source

Fix manifest & healthcheck css paths

Bubka 8 months ago
parent
commit
3ef40e849a
2 changed files with 2 additions and 2 deletions
  1. 1 1
      resources/views/health.blade.php
  2. 1 1
      resources/views/landing.blade.php

+ 1 - 1
resources/views/health.blade.php

@@ -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">

+ 1 - 1
resources/views/landing.blade.php

@@ -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>