Skip to content

Commit

Permalink
Use new Frontend extender
Browse files Browse the repository at this point in the history
  • Loading branch information
franzliedke committed Jul 23, 2018
1 parent e97a227 commit 978904c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
use Illuminate\Contracts\Events\Dispatcher;

return [
(new Extend\Assets('forum'))
(new Extend\Frontend('forum'))
->js(__DIR__.'/js/dist/forum.js')
->asset(__DIR__.'/less/forum.less'),
->css(__DIR__.'/less/forum.less'),

(new Extend\Assets('admin'))
(new Extend\Frontend('admin'))
->js(__DIR__.'/js/dist/admin.js')
->asset(__DIR__.'/less/admin.less'),
->css(__DIR__.'/less/admin.less'),

function (Dispatcher $events) {
$events->subscribe(Listener\AddUserSuspendAttributes::class);
Expand Down

0 comments on commit 978904c

Please sign in to comment.