1

Im using YiiBooster, but I don't like that is generates folder inside the assets dir and copying a bunch of files into it. I would like it to create symlinks instead, like Yii assetManager:

$assetManager = Yii::app()->assetManager;
$assetManager->linkAssets = true;

Does anyone know how to achieve this ?

RB_
  • 1,195
  • 15
  • 35

1 Answers1

2

if your app is configured to user linkAssets booster automatically follows this ... all what you need is to configure your app to use linkAssets, this way ...

'components'=>array(
'assetManager'=>array(
    'linkAssets' => true,
),
Amr Bedair
  • 196
  • 2
  • 13