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.

26 lines
495 B

  1. <?php
  2. namespace backend\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. 'js/common.js'
  16. ];
  17. public $depends = [
  18. 'yii\web\YiiAsset',
  19. 'yii\bootstrap4\BootstrapAsset',
  20. 'yii\bootstrap4\BootstrapPluginAsset',
  21. 'iron\web\AdminlteAsset',
  22. ];
  23. }