AppAsset.php 438 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace html5\assets;
  3. use yii\web\AssetBundle;
  4. /**
  5. * Class AppAsset
  6. * @package html5\assets
  7. * @author jianyan74 <751393839@qq.com>
  8. */
  9. class AppAsset extends AssetBundle
  10. {
  11. public $basePath = '@webroot';
  12. public $baseUrl = '@web';
  13. public $css = [
  14. // 'css/site.css',
  15. ];
  16. public $js = [
  17. ];
  18. public $depends = [
  19. // 'yii\web\YiiAsset',
  20. // 'yii\bootstrap\BootstrapAsset',
  21. ];
  22. }
粤ICP备19079148号