@php $manifestPath = public_path('build/manifest.json'); $manifest = file_exists($manifestPath) ? json_decode(file_get_contents($manifestPath), true) : []; $installerCss = $manifest['resources/css/app.css']['file'] ?? null; $installerJs = $manifest['resources/js/app.js']['file'] ?? null; @endphp @if ($installerCss) @else @vite(['resources/css/app.css']) @endif @if ($installerJs) @else @vite(['resources/js/app.js']) @endif @livewireStyles
@livewireScripts