You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
471 B

5 years ago
5 years ago
  1. <?php
  2. namespace kcadmin\assets;
  3. use yii\web\AssetBundle;
  4. /**
  5. * Main backend application asset bundle.
  6. */
  7. class AppAsset extends AssetBundle
  8. {
  9. public $basePath = '@webroot';
  10. public $baseUrl = '@web';
  11. public $css = [
  12. 'css/site.css',
  13. ];
  14. public $js = [
  15. ];
  16. public $depends = [
  17. 'yii\web\YiiAsset',
  18. 'yii\bootstrap\BootstrapAsset',
  19. 'yii\bootstrap\BootstrapPluginAsset',
  20. 'blobt\web\AdminlteAsset',
  21. ];
  22. }