当我使用/web
php app/console assets:install
文件夹
由于供应商的捆绑,我真的需要这样做。
基本上,我需要避免复制Assetic使用的所有文件。
答案 0 :(得分:1)
如果您使用Symfony 2.6
# make a hard copy of the assets in web/
$ php app/console assets:install
# if possible, make absolute symlinks in web/ if not, make a hard copy
$ php app/console assets:install --symlink
# if possible, make relative symlinks in web/ if not, make a hard copy
$ php app/console assets:install --symlink --relative
来自http://symfony.com/blog/new-in-symfony-2-6-smarter-assets-install-command