Обновить resources/views/app.blade.php

This commit is contained in:
2026-01-08 10:42:44 +09:00
parent eb019504d7
commit b8d33e33a5

View File

@@ -1,10 +1,15 @@
<html> <html>
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
@vite('resources/js/app.js') <title>{{ config('app.name', 'Laravel') }}</title>
@inertiaHead
<!-- Styles / Scripts -->
@if (file_exists(public_path('build/manifest.json')) || file_exists(public_path('hot')))
@vite(['resources/js/app.js'])
@inertiaHead
@endif
</head> </head>
<body> <body>
@inertia('onboard') @inertia('onboard')