I using yii2 AppAsset component registered js file:
<?php
namespace backend\assets;
use yii\web\AssetBundle;
class DiyAsset extends AssetBundle
{
public $basePath = '@webroot';
public $baseUrl = '@web';
public $css = [
//'css/diy.css',
];
public $js = [
'js/base.js',
];
public $depends = [
'yii\web\YiiAsset',
'yii\bootstrap\BootstrapAsset',
];
}
the js file content: the js file content
the js file loaded success,but chrome broswer show me the error:
can everyboy help me?
Most probably you use VirtualBox to run Yii2 application.
If yes - disable
sendfile
in your Apache or Nginx config. Check out this issue on GitHub