Moved favicon images to app/dist folder

This commit is contained in:
Chris Kankiewicz
2020-01-25 23:09:50 -07:00
parent 6e0ef6b31d
commit c266e26b8d
5 changed files with 5 additions and 2 deletions

1
.gitignore vendored
View File

@@ -1,4 +1,3 @@
/app/dist/
/node_modules/
/vendor/
.env

3
app/dist/.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
*
!/images/
!.gitignore

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -2,7 +2,8 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="/app/resources/images/favicon.{{ config('dark_mode') ? 'dark' : 'light' }}.png">
<link rel="icon" href="{{ config('dark_mode') ? asset('images/favicon.dark.png') : asset('images/favicon.light.png') }}">
<link rel="stylesheet" href="{{ asset('app.css') }}">
<title>{{ path | default('Home') }} &bull; Directory Lister</title>