Я использую веточку в моем проекте yii2 и в моем composer
"yiisoft/yii2-twig": "~2.0.0"
И я добавил конфигурацию как
'components' => [
'request' => [
'csrfParam' => '_csrf-frontend',
],
'view' => [
'class' => 'yii\web\View',
'renderers' => [
'twig' => [
'class' => 'yii\twig\ViewRenderer',
'cachePath' => '@runtime/Twig/cache',
// Array of twig options:
'options' => [
'auto_reload' => true,
],
'globals' => [
'html' => ['class' => '\yii\helpers\Html'],
],
'uses' => ['yii\bootstrap'],
],
// ...
],
],
]
Но я получаю ошибку времени выполнения, такую как
Twig\Error\RuntimeError
An exception has been thrown during the rendering of a template ("The file or directory to be published does not exist: C:\xampp\htdocs\dobuyme/vendor/bower-asset/twig.js").
Как я могу решить эту проблему. Заранее спасибо