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
455 B
26 lines
455 B
6 years ago
|
<?php
|
||
|
/**
|
||
|
* Created by Error202
|
||
|
* Date: 06.06.2018
|
||
|
*/
|
||
|
|
||
|
namespace frontend\web\themes\start\layouts\code\assets;
|
||
|
|
||
|
use frontend\assets\DeviceJsAsset;
|
||
|
use yii\web\AssetBundle;
|
||
|
|
||
|
class AppAsset extends AssetBundle
|
||
|
{
|
||
|
public $basePath = '@webroot/themes/start';
|
||
|
public $baseUrl = '@web/themes/start';
|
||
|
public $css = [
|
||
|
'css/main.css',
|
||
|
];
|
||
|
public $js = [
|
||
|
];
|
||
|
public $depends = [
|
||
|
'yii\web\YiiAsset',
|
||
|
BootstrapAsset::class,
|
||
|
DeviceJsAsset::class,
|
||
|
];
|
||
|
}
|