Blame view

backend/assets/FontAwesomeAsset.php 368 Bytes
4253cbec   root   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  <?php
  namespace backend\assets;
  
  use yii\web\AssetBundle;
  
  class FontAwesomeAsset extends AssetBundle
  {
      // The files are not web directory accessible, therefore we need
      // to specify the sourcePath property. Notice the @vendor alias used.
      public $sourcePath = '@vendor/fortawesome/font-awesome';
      public $css = [
          'css/font-awesome.css',
      ];
  }