Drupal investigation

AppAsset.php 593B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * @link http://www.yiiframework.com/
  4. * @copyright Copyright (c) 2008 Yii Software LLC
  5. * @license http://www.yiiframework.com/license/
  6. */
  7. namespace app\assets;
  8. use yii\web\AssetBundle;
  9. /**
  10. * @author Qiang Xue <qiang.xue@gmail.com>
  11. * @since 2.0
  12. */
  13. class AppAsset extends AssetBundle
  14. {
  15. public $basePath = '@webroot';
  16. public $baseUrl = '@web';
  17. public $css = [
  18. 'css/site.css',
  19. ];
  20. public $js = [
  21. ];
  22. public $depends = [
  23. 'yii\web\YiiAsset',
  24. 'yii\bootstrap\BootstrapAsset',
  25. 'rmrevin\yii\fontawesome\AssetBundle',
  26. ];
  27. }