Files
TLA/resources/views/vue.blade.php
T
Belupeti 853498e9ac
Build / Build-image (push) Successful in 1m8s
suggestion form development
2026-08-21 09:22:41 +02:00

21 lines
751 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Default favicon (fallback for unsupported browsers) -->
<link rel="icon" href="{{ asset('favicon.ico') }}" type="image/x-icon">
<!-- Light mode favicon -->
<link rel="icon" href="{{ asset('logo_full_tall_light.svg') }}" type="image/x-icon" media="(prefers-color-scheme: light)">
<!-- Dark mode favicon -->
<link rel="icon" href="{{ asset('logo_full_tall_dark.svg') }}" type="image/x-icon" media="(prefers-color-scheme: dark)">
<title>{{ config('app.name') }}</title>
@vite(['resources/js/app.js'])
</head>
<body>
<div id="app" class="isolate"></div>
</body>
</html>