Skip to content

Instantly share code, notes, and snippets.

@imanilchaudhari
Created October 4, 2016 05:22
Show Gist options
  • Save imanilchaudhari/f5888fa189b630edc9396efb2a4db41e to your computer and use it in GitHub Desktop.
Save imanilchaudhari/f5888fa189b630edc9396efb2a4db41e to your computer and use it in GitHub Desktop.
Yii2 advanced app angular
<?php
namespace backend\assets;
use yii\web\AssetBundle;
use yii\web\View;
/**
* Class AngularAsset
*/
class AngularAsset extends AssetBundle
{
public $sourcePath = '@bower/angular/';
public $js = [
'angular.min.js',
];
public $jsOptions = [
'position' => View::POS_HEAD,
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment