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.
		
		
		
		
			
				
					30 lines
				
				504 B
			
		
		
			
		
	
	
					30 lines
				
				504 B
			| 
											12 years ago
										 | <?php
 | ||
|  | /**
 | ||
|  |  * @link http://www.yiiframework.com/
 | ||
|  |  * @copyright Copyright (c) 2008 Yii Software LLC
 | ||
|  |  * @license http://www.yiiframework.com/license/
 | ||
|  |  */
 | ||
|  | 
 | ||
| 
											12 years ago
										 | namespace app\assets;
 | ||
| 
											12 years ago
										 | 
 | ||
|  | use yii\web\AssetBundle;
 | ||
|  | 
 | ||
|  | /**
 | ||
|  |  * @author Qiang Xue <qiang.xue@gmail.com>
 | ||
|  |  * @since 2.0
 | ||
|  |  */
 | ||
|  | class AppAsset extends AssetBundle
 | ||
|  | {
 | ||
| 
											12 years ago
										 | 	public $basePath = '@webroot';
 | ||
|  | 	public $baseUrl = '@web';
 | ||
| 
											12 years ago
										 | 	public $css = [
 | ||
| 
											12 years ago
										 | 		'css/site.css',
 | ||
| 
											12 years ago
										 | 	];
 | ||
|  | 	public $js = [
 | ||
|  | 	];
 | ||
|  | 	public $depends = [
 | ||
| 
											12 years ago
										 | 		'yii\web\YiiAsset',
 | ||
| 
											12 years ago
										 | 		'yii\bootstrap\BootstrapAsset',
 | ||
| 
											12 years ago
										 | 	];
 | ||
| 
											12 years ago
										 | }
 |