Yii
0
Вклад в тег
'components' => [
'view' => [
'theme' => [
'pathMap' => ['@app/views' => '@app/themes/mytheme'],
],
],
],
class AppAsset extends AssetBundle
{
public $sourcePath = '@app/themes/mytheme';
public $css = [
'css/style.css',
];
public $js = [
];
public $depends = [
'yii\web\YiiAsset',
'yii\bootstrap\BootstrapAsset',
];
}