mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2024-12-12 18:28:27 +01:00
14 lines
256 B
PHP
14 lines
256 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class LivewireServiceProvider extends ServiceProvider
|
|
{
|
|
public function register()
|
|
{
|
|
$assetUrl = url('');
|
|
config(['livewire.asset_url' => $assetUrl]);
|
|
}
|
|
} |