Yii2 theme integration

前端 未结 6 1745
囚心锁ツ
囚心锁ツ 2020-12-01 10:10

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?

6条回答
  •  我在风中等你
    2020-12-01 10:32

    try this:

    'components' => [
        'view' => [
            'theme' => [
                'pathMap' => ['@backend/views' => '@backend/themes/mytheme'],
                'baseUrl' => '@backend/themes/mytheme',
            ],
        ],
    ],
    

提交回复
热议问题