Skip to content

Commit 66d2a81

Browse files
authored
Merge branch 'laravel:main' into main
2 parents f5bb842 + 9b8dd88 commit 66d2a81

File tree

8 files changed

+12
-6
lines changed

8 files changed

+12
-6
lines changed

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,14 @@
2323
"vue-tsc": "^2.2.4"
2424
},
2525
"dependencies": {
26-
"@inertiajs/vue3": "^2.0.0-beta.3",
26+
"@inertiajs/vue3": "^2.0.0",
2727
"@tailwindcss/vite": "^4.1.1",
2828
"@vitejs/plugin-vue": "^5.2.1",
2929
"@vueuse/core": "^12.8.2",
3030
"class-variance-authority": "^0.7.1",
3131
"clsx": "^2.1.1",
3232
"concurrently": "^9.0.1",
3333
"laravel-vite-plugin": "^1.0",
34-
"lucide": "^0.468.0",
3534
"lucide-vue-next": "^0.468.0",
3635
"reka-ui": "^2.2.0",
3736
"tailwind-merge": "^3.2.0",

public/apple-touch-icon.png

1.62 KB
Loading

public/favicon.ico

4.19 KB
Binary file not shown.

public/favicon.svg

Lines changed: 3 additions & 0 deletions
Loading

resources/js/components/AppHeader.vue

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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/js/components/ui/sidebar/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { ComputedRef, Ref } from 'vue'
22
import { createContext } from 'reka-ui'
33

4-
export const SIDEBAR_COOKIE_NAME = 'sidebar:state'
4+
export const SIDEBAR_COOKIE_NAME = 'sidebar_state'
55
export const SIDEBAR_COOKIE_MAX_AGE = 60 * 60 * 24 * 7
66
export const SIDEBAR_WIDTH = '16rem'
77
export const SIDEBAR_WIDTH_MOBILE = '18rem'

resources/views/app.blade.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,15 @@
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

3842
@routes
39-
@vite(['resources/js/app.ts'])
43+
@vite(['resources/js/app.ts', "resources/js/pages/{$page['component']}.vue"])
4044
@inertiaHead
4145
</head>
4246
<body class="font-sans antialiased">

0 commit comments

Comments
 (0)