Does @livewireScripts directive still need to be included when using @filamentScripts?

The TALL preset base.blade.layout has @livewireScripts & @livewireStyles. I want to use filament in the front-end, so I've inserted the @filamentScripts & @filamentStyles directives.
<html>
<head>
@livewireStyles
@filamentStyles
@vite('resources/sass/app.scss')
</head>

<body>
@yield('body')

@livewireScripts
@filamentScripts
@vite('resources/js/app.js')
</body>
</html>
<html>
<head>
@livewireStyles
@filamentStyles
@vite('resources/sass/app.scss')
</head>

<body>
@yield('body')

@livewireScripts
@filamentScripts
@vite('resources/js/app.js')
</body>
</html>
Have I placed the directives in the correct order?
0 Replies
No replies yetBe the first to reply to this messageJoin