fix: Set Livewire asset_url to null for subdirectory support

ASSET_URL was being used as the script src, causing:
<script src="https://domain.com/kb">

Setting asset_url to null lets Livewire use the correct default path.
This commit is contained in:
2025-11-29 17:48:12 +09:00
parent a9b4b93d8c
commit ef238891f5

View File

@@ -15,7 +15,7 @@
|
*/
'asset_url' => env('ASSET_URL'),
'asset_url' => null,
/*
|--------------------------------------------------------------------------