mirror of
https://github.com/sp-tarkov/forge.git
synced 2025-02-12 20:20:41 -05:00
Uses Config Option for Livewire Location
This commit is contained in:
parent
2bbe715342
commit
d1cdc46548
@ -4,9 +4,7 @@ namespace App\Providers;
|
||||
|
||||
use App\Models\User;
|
||||
use Illuminate\Support\Facades\Gate;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
use Livewire\Livewire;
|
||||
|
||||
class AppServiceProvider extends ServiceProvider
|
||||
{
|
||||
@ -23,11 +21,6 @@ class AppServiceProvider extends ServiceProvider
|
||||
*/
|
||||
public function boot(): void
|
||||
{
|
||||
// Register the Livewire script route.
|
||||
Livewire::setScriptRoute(function ($handle) {
|
||||
return Route::get('/vendor/livewire/livewire.js', $handle);
|
||||
});
|
||||
|
||||
// This gate determines who can access the Pulse dashboard.
|
||||
Gate::define('viewPulse', function (User $user) {
|
||||
return $user->isAdmin();
|
||||
|
@ -114,7 +114,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'inject_assets' => true,
|
||||
'inject_assets' => false,
|
||||
|
||||
/*
|
||||
|---------------------------------------------------------------------------
|
||||
@ -157,4 +157,16 @@ return [
|
||||
*/
|
||||
|
||||
'pagination_theme' => 'tailwind',
|
||||
|
||||
/*
|
||||
|---------------------------------------------------------------------------
|
||||
| Asset URL
|
||||
|---------------------------------------------------------------------------
|
||||
|
|
||||
| When serving assets from a CDN, you may need to override the asset URL
|
||||
| that Livewire uses to include assets in the response.
|
||||
|
|
||||
*/
|
||||
|
||||
'asset_url' => env('ASSET_URL_LIVEWIRE'),
|
||||
];
|
||||
|
Loading…
x
Reference in New Issue
Block a user