1
0
mirror of https://github.com/flarum/core.git synced 2025-08-19 14:51:47 +02:00

Use new Frontend extender

See flarum/core#851.
This commit is contained in:
Franz Liedke
2018-07-23 16:34:45 +02:00
parent 607132a68f
commit 3129ee5b4b

View File

@@ -17,13 +17,13 @@ use Flarum\Tags\Listener;
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'),
(new Extend\Routes('forum'))
->get('/t/{slug}', 'tag', FrontendController::class)