22 lines
403 B
PHP
22 lines
403 B
PHP
<?php
|
|
/**
|
|
* @link http://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license http://www.yiiframework.com/license/
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace yii\bootstrap5;
|
|
|
|
use yii\web\AssetBundle;
|
|
|
|
class BootstrapAsset extends AssetBundle
|
|
{
|
|
public $sourcePath = '@bower/bootstrap/dist';
|
|
public $css = [
|
|
'css/bootstrap.css',
|
|
];
|
|
public $js = [];
|
|
}
|