mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-03-07 10:26:50 +01:00
23 lines
390 B
PHP
23 lines
390 B
PHP
<?php
|
|
|
|
namespace app\assets;
|
|
|
|
use yii\web\AssetBundle;
|
|
use yii\web\JqueryAsset;
|
|
|
|
class WSClientAsset extends AssetBundle
|
|
{
|
|
public $basePath = '@webroot';
|
|
public $baseUrl = '@web';
|
|
public $css = [
|
|
'css/wsclient.css',
|
|
];
|
|
public $js = [
|
|
'js/wsclient.js',
|
|
];
|
|
public $depends = [
|
|
'app\assets\AppAsset',
|
|
'yii\web\JqueryAsset',
|
|
];
|
|
}
|