Install assets from app directory

前端 未结 1 622
-上瘾入骨i
-上瘾入骨i 2020-12-16 17:43

Here is my directory structure

/app/Resources/public
/app/Resources/public/css
/app/Resources/public/iamges
/app/Resources/public/js

I need

相关标签:
1条回答
  • 2020-12-16 18:34

    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!

    0 讨论(0)
提交回复
热议问题