- Add CSP headers in guest.blade.php for enhanced security.

- Update Vite config with proper server settings, including CORS configuration for `ddev.site` domains.
- Upgrade dependencies in `package-lock.json`, including versions for Rollup and TailwindCSS packages.
This commit is contained in:
2026-01-21 04:25:01 +01:00
parent c7671b93b1
commit af0cf8bed9
6 changed files with 479 additions and 459 deletions
@@ -20,7 +20,7 @@
@livewireStyles
@fluxAppearance
<title>{{ $title . ' | ' . config('app.name') ?? config('app.name') }}</title>
<title>{{ config('app.name', 'Laravel') }}</title>
</head>
<body class="font-sans antialiased bg-neutral-900">
<x-navbar />
@@ -36,6 +36,5 @@
@fluxScripts
@stack('modals')
</body>
</html>