Install assets from app directory Install assets from app directory symfony symfony

Install assets from app directory


Your global assets should go directly into the web folder. There is no need to put them in the app folder and then copy them!

The install:assets or assetic:dump command are for assets which belong to one bundle only and which are kept inside this bundle to make them reusable.

What you can do though is to keep the assets which belong to your application in your "application bundle". Most of the time you got at least one bundle which is not reusable, representing your application core. I keep my base templates (base.html.twig) and the main assets in there so I can use assetic:dump on them!