Skip to content

Commit dc5bb6d

Browse files
authored
Adding updates to vue starter kit favicons (#130)
1 parent 55cc169 commit dc5bb6d

File tree

6 files changed

+9
-2
lines changed

6 files changed

+9
-2
lines changed

public/apple-touch-icon.png

1.69 KB
Loading

public/favicon.ico

4.19 KB
Binary file not shown.

public/favicon.svg

+3
Loading

resources/js/components/AppHeader.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const rightNavItems: NavItem[] = [
5454
},
5555
{
5656
title: 'Documentation',
57-
href: 'https://laravel.com/docs/starter-kits',
57+
href: 'https://laravel.com/docs/starter-kits#vue',
5858
icon: BookOpen,
5959
},
6060
];

resources/js/components/AppSidebar.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const footerNavItems: NavItem[] = [
2424
},
2525
{
2626
title: 'Documentation',
27-
href: 'https://laravel.com/docs/starter-kits',
27+
href: 'https://laravel.com/docs/starter-kits#vue',
2828
icon: BookOpen,
2929
},
3030
];

resources/views/app.blade.php

+4
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@
3232

3333
<title inertia>{{ config('app.name', 'Laravel') }}</title>
3434

35+
<link rel="icon" href="/favicon.ico" sizes="any">
36+
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
37+
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
38+
3539
<link rel="preconnect" href="https://fonts.bunny.net">
3640
<link href="https://fonts.bunny.net/css?family=instrument-sans:400,500,600" rel="stylesheet" />
3741

0 commit comments

Comments
 (0)