2021-07-09 17:53:24 +08:00
|
|
|
Bootstrap の .sass ファイルを直接に使う
|
|
|
|
=======================================
|
|
|
|
|
2022-12-27 15:09:38 +08:00
|
|
|
あなたが [Bootstrap CSS をあなたの sass ファイルに直接含める](https://getbootstrap.com/getting-started/#customizing) ことを望む場合は、
|
2021-07-09 17:53:24 +08:00
|
|
|
オリジナルの CSS ファイルがロードされないように無効化する必要があります。
|
2021-08-03 16:22:50 +08:00
|
|
|
[[yii\bootstrap5\BootstrapAsset|BootstrapAsset]] の `css` プロパティを空に設定することによって、そうすることが出来ます。
|
2021-07-09 17:53:24 +08:00
|
|
|
そのためには、`assetManager` [アプリケーション・コンポーネント](https://github.com/yiisoft/yii2/blob/master/docs/guide-ja/structure-application-components.md) を以下のように構成します。
|
|
|
|
|
|
|
|
```php
|
|
|
|
'assetManager' => [
|
|
|
|
'bundles' => [
|
2021-08-03 16:22:50 +08:00
|
|
|
'yii\bootstrap5\BootstrapAsset' => [
|
2021-07-09 17:53:24 +08:00
|
|
|
'css' => [],
|
|
|
|
]
|
|
|
|
]
|
|
|
|
]
|
|
|
|
```
|