I have the following lines in config.yml:
assetic:
assets:
image1:
input: @bundle/Resource/images/image1.png
output: images/image1.png
image2:
input: @bundle/Resource/images/image2.png
output: images/image2.png
How to copy multiple files at the same time or by mask?
For example:
assetic:
assets:
images:
input: @bundle/Resource/images
output: images
or
assetic:
assets:
images:
input: @bundle/Resource/images/*.png
output: images/*.png
source
share