adrema/resources/views/app.blade.php

13 lines
380 B
PHP
Raw Normal View History

2020-04-10 20:32:12 +02:00
<!DOCTYPE html>
2021-04-10 19:45:11 +02:00
<html class="h-full">
2020-04-10 20:32:12 +02:00
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
2020-04-12 00:26:44 +02:00
<meta name="socketport" content="{{env('SOCKET_PORT')}}" />
2023-06-01 11:05:13 +02:00
@vite('resources/js/app.js')
2020-04-10 20:32:12 +02:00
</head>
2021-04-10 19:45:11 +02:00
<body class="min-h-full flex flex-col">
2020-04-10 20:32:12 +02:00
@inertia
</body>
</html>