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.

31 lines
585 B

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