Shared hosting deployment
Hello, I have a problem to deploy my filament app to a shared hosting.
With Filament v2 I was forced to publish the livewire config and set : 'asset_url' => ''
In livewire 3 asset_url is replaced by :
But I don't know where (file) I need to add this?
3 Replies
it will go inside your panel provider. for e.g. AdminPanelProvider.php
It gives me :
Class "App\Providers\Filament\Livewire" not found
C'mon, that's just PHP 101. You need to either include the namespace on Livewire::foo(), or add a 'use' for it. Your IDE should offer to do that for you.