mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2025-02-13 02:21:02 +01:00
Disable automatic asset injection and add core Livewire assets to user panel
This commit is contained in:
parent
dd9491aa7d
commit
fec1cd0dd5
@ -5,4 +5,6 @@ return [
|
||||
* Options: tailwind | bootstrap-4 | bootstrap-5.
|
||||
*/
|
||||
'theme' => 'bootstrap-5',
|
||||
'inject_core_assets_enabled' => false,
|
||||
'inject_third_party_assets_enabled' => false,
|
||||
];
|
||||
|
@ -114,7 +114,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'inject_assets' => true,
|
||||
'inject_assets' => false,
|
||||
|
||||
/*
|
||||
|---------------------------------------------------------------------------
|
||||
|
@ -127,10 +127,12 @@
|
||||
|
||||
@push('sidebar-stylesheets')
|
||||
@livewireStyles
|
||||
<link rel="stylesheet" href="{{ asset('assets/vendor/livewire/core.min.css') }}" />
|
||||
@endpush
|
||||
|
||||
@push('sidebar-scripts')
|
||||
<script src="{{ asset('assets/vendor/livewire/livewire.js') }}" data-update-uri="/livewire/update" data-navigate-once="true"></script>
|
||||
<script src="{{ asset('assets/vendor/livewire/core.min.js') }}"></script>
|
||||
<script src="{{ asset('assets/external-dependencies/sweetalert2.min.js') }}"></script>
|
||||
<script type="text/javascript">
|
||||
// Function to confirm and delete users
|
||||
|
Loading…
x
Reference in New Issue
Block a user