mirror of
https://github.com/LinkStackOrg/LinkStack.git
synced 2025-04-17 11:47:27 +02: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.
|
* Options: tailwind | bootstrap-4 | bootstrap-5.
|
||||||
*/
|
*/
|
||||||
'theme' => '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')
|
@push('sidebar-stylesheets')
|
||||||
@livewireStyles
|
@livewireStyles
|
||||||
|
<link rel="stylesheet" href="{{ asset('assets/vendor/livewire/core.min.css') }}" />
|
||||||
@endpush
|
@endpush
|
||||||
|
|
||||||
@push('sidebar-scripts')
|
@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/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 src="{{ asset('assets/external-dependencies/sweetalert2.min.js') }}"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
// Function to confirm and delete users
|
// Function to confirm and delete users
|
||||||
|
Loading…
x
Reference in New Issue
Block a user