Files
onboard/resources/views/app.blade.php
brusnitsyn e1579c7b4e Работа над контейнером docker
Изменения в конфигах nginx
Добавил привязку сервисов к 1 адресу
2026-07-28 11:46:07 +09:00

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>