I followed the guide on the very bottom of this article: http://symfony.com/doc/current/cookbook/assetic/asset_management.html
I have this code:
{% javascripts
...
output='js/dist/dist.js'
%}
<script src="{{ asset_url }}"></script>
{% endjavascripts %}
Now if I run sf assetic:dump --env=prod
it creates the compiled file properly. However, I would like to have it generating a random name (or timestamped) so that the client-side browser cache problem is avoided. Right now it always creates dist.js
file which gets cached and when I update my code the users won't see the difference (or get errors).
Is there a way to make it like dist12345678.js
?
You have two options here: Either leave out the output file name (it will then be an autogenerated hash that changes) or use asset versions, as described in the Symfony docs: http://symfony.com/doc/current/reference/configuration/framework.html#ref-framework-assets-version
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With