yii2-bootstrap5/src/BootstrapAsset.php

31 lines
495 B
PHP
Raw Normal View History

2021-02-10 05:04:59 +08:00
<?php
2021-08-07 05:38:53 +08:00
/**
* @link https://www.yiiframework.com/
2021-08-07 05:38:53 +08:00
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
2021-08-07 05:38:53 +08:00
*/
2021-02-10 05:04:59 +08:00
declare(strict_types=1);
namespace yii\bootstrap5;
use yii\web\AssetBundle;
/**
* Twitter Bootstrap 5 CSS bundle.
*/
2021-02-10 05:04:59 +08:00
class BootstrapAsset extends AssetBundle
{
/**
* @inheritDoc
*/
2024-03-28 16:27:15 +08:00
public $sourcePath = '@npm/bootstrap';
2022-11-30 15:47:12 +08:00
/**
* @inheritDoc
*/
2021-02-10 05:04:59 +08:00
public $css = [
2022-11-30 15:47:12 +08:00
'dist/css/bootstrap.css'
2021-02-10 05:04:59 +08:00
];
}