我将扩展名dmstr/yii2-cookie-consent用于Cookie同意,并且我想修改扩展名的CSS。扩展中的CSS包含在AssetBundle中。
这是我的问题:
在开发过程中可以使用
$this->registerCss(".your-css {}")
用于原型制作
上线时,您可以使用依赖注入使扩展资产捆绑超载
'assetManager' => [
'bundles' => [
'dmstr\cookieconsent\assets\CookieConsentAsset' => [
'sourcePath' => '/path/to/your/source/path',
'css' => [
'css/yourstyles.css'
]
]
]
]