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>


Have I placed the directives in the correct order?
Was this page helpful?