Comparing
#192 with
#193
Revision #193 was created by rackycz on May 7, 2020, 11:00:35 AM.
Bootswatch
« Previous (#192) Next (#194) »
Content
[...]
Note: If you want to download the theme, you should link it like this:
```html
<link href="<?=Yii::$app->getUrlManager()->getBaseUrl()?>/css/bootstrap-bootswatch-united.min.css" rel="stylesheet">
```
Now you technically do not need the original bootstrap.css file yo you can remove it in "basic/config/web.php" by adding the assetManager section to "components":
```php
'components' => [
// https://stackoverflow.com/questions/26734385/yii2-disable-bootstrap-js-jquery-and-css
'assetManager' => [
'bundles' => [
'yii\bootstrap\BootstrapAsset' => [
'css' => [],
],
],
],
```