craftcms/craft

bootstrap'ing modules causes Yii Debug Toolbar to not load

khalwat opened this issue · 1 comments

If you implement a module as per the example:

    // All environments
    '*' => [
        'modules' => [
            'my-module' => modules\Module::class,
        ],
        'bootstrap' => ['my-module'],
    ],

This will cause the Yii Debug toolbar to no longer load, presumably because the 'bootstrap' gets stomped on.

mmmmm. Nevermind.