Open xpr0ger opened 9 years ago
Ack, I'm seeing this issue as well. From digging on the internet, this appears to generate URLs that are routed properly by Symfony's controllers.Is there a workaround for this?
by default, assets are not combined in dev, and so a file is dumped for each asset in the asset collection (there is a single asset in the collection in your case).
There is 3 solutions in your case:
ucss
filter)combine=true
in your assetic tag in the templateNote that if you keep the file combined, you would still need to switch between debug and non-debug mode when dumping your assets, otherwise the file content will either always have ucss
applied or never.
@stof thanks for the suggestions. combine=true
seems reasonable.
Let's say I were to explore dumping leaf assets, how would I go about doing that?
For version 1.2.1
In debug mode I'm getting wrong names for output files.
For example, in template I got the name for the css file "css/3c39bd2_main_1.css", but the file has generated under "css/3c39bd2.css". In case when the mode debug is disabled, everything is ok.
How i can solve it or this is a bug?