I have installed Yii2 advanced application, and now I want to change backend theme. How can I do this? Is there any file where I need to tell Yii2 that use my custom theme?
try this:
'components' => [ 'view' => [ 'theme' => [ 'pathMap' => ['@backend/views' => '@backend/themes/mytheme'], 'baseUrl' => '@backend/themes/mytheme', ], ], ],