From ff2d57d05da7bce71469d30d33fb1c386e89f668 Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Mon, 23 Jul 2018 16:30:06 +0200 Subject: [PATCH] Use new Frontend extender See flarum/core#851. --- bootstrap.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bootstrap.php b/bootstrap.php index ed63466..4111d53 100644 --- a/bootstrap.php +++ b/bootstrap.php @@ -15,11 +15,11 @@ 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'), (new Extend\Routes('api'))