28 lines
853 B
PHP
28 lines
853 B
PHP
<html lang="ru">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<meta name="sentry-key" content="{{ config('vue.sentry.dsn') }}">
|
|
<meta name="sentry-id" content="{{ config('vue.sentry.id') }}">
|
|
|
|
<title>{{ config('app.name', 'Laravel') }}</title>
|
|
|
|
<script>
|
|
window.reverb = {
|
|
key: "{{ config('reverb.apps.apps.0.key') }}",
|
|
}
|
|
</script>
|
|
|
|
<!-- Styles / Scripts -->
|
|
@if (file_exists(public_path('build/manifest.json')) || file_exists(public_path('hot')))
|
|
@routes
|
|
@vite(['resources/js/app.js'])
|
|
@inertiaHead
|
|
@endif
|
|
</head>
|
|
<body>
|
|
@inertia('onboard')
|
|
</body>
|
|
</html>
|