Symfony2 - Avoid assets: install copy in web scss

My SCSS files are copied to the /web folder when I use php app/console assets:install

I really need to do this due to vendor packages.

Basically, I need to avoid copying all the files that Assetic uses.

+5
source share
1 answer

If you are using 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 

from http://symfony.com/blog/new-in-symfony-2-6-smarter-assets-install-command

+1
source

All Articles