Symfony2 - 避免资产:将副本安装到web scss

时间:2015-04-29 08:23:43

标签: symfony assets assetic

当我使用/web

时,我的SCSS文件被复制到php app/console assets:install文件夹

由于供应商的捆绑,我真的需要这样做。

基本上,我需要避免复制Assetic使用的所有文件

1 个答案:

答案 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