You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
634 B
634 B
直接使用Bootstrap的.less文件
如果引入 直接使用Bootstrap的.less文件
则需要禁用原始加载的 css 文件.
通过设置 yii\bootstrap\BootstrapAsset 的 css 属性为空即可.
为此,需要配置 assetManager
应用组件 为如下:
'assetManager' => [
'bundles' => [
'yii\bootstrap\BootstrapAsset' => [
'css' => [],
]
]
]