yii2-bootstrap5/src/BootstrapAsset.php

22 lines
403 B
PHP
Raw Normal View History

2021-02-10 00:04:59 +03:00
<?php
2021-08-07 00:38:53 +03:00
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
2021-02-10 00:04:59 +03:00
declare(strict_types=1);
namespace yii\bootstrap5;
use yii\web\AssetBundle;
class BootstrapAsset extends AssetBundle
{
public $sourcePath = '@bower/bootstrap/dist';
2021-02-10 00:04:59 +03:00
public $css = [
'css/bootstrap.css',
];
2021-07-12 17:22:29 +02:00
public $js = [];
2021-02-10 00:04:59 +03:00
}