I disabled `inject_assets` in livewire config, how to load it manually for filament

I disabled inject_assets in livewire config, how to load it manually for filament
Solution
I think you can inject it via panel provider instead of rendering hooks:

return $panel
    ->bootUsing(function () {
        \Livewire\Livewire::forceAssetInjection();
    })
    ...
Was this page helpful?