symfony - Symfony2 - Avoid assets:install copy to web scss -
my scss files being copied /web
folder when i'm using php app/console assets:install
i need due vendor's bundles.
basically, need avoid being copied all files assetic uses.
if use symfony 2.6
# make hard copy of assets in web/ $ php app/console assets:install # if possible, make absolute symlinks in web/ if not, make hard copy $ php app/console assets:install --symlink # if possible, make relative symlinks in web/ if not, make hard copy $ php app/console assets:install --symlink --relative
from http://symfony.com/blog/new-in-symfony-2-6-smarter-assets-install-command
Comments
Post a Comment