You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use javascript files with the tag template {% static 'my_image.jpg' %} (from {% load static %}).
The problem with the current PipelineCachedStorage implementation is that this storage first the collects the pipeline bundled files and does later on a super call to collect the other static files.
When it hits the {% static 'my_image.jpg' %}, it looks for a versioned file called my_image.3b1f39551527.jpg, but this files still does not exists. It will only be generated once the call to the super_class.post_process(...) is done.
Is this done deliberated? or can the PipelineCachedStorage be changed to first collect the django static files (super_class.post_process(...)) and afterwards collect the pipeline bundles?
I realized now that the pipeline bundles also need a version generated and this can only be done after the bundles are created. Is there a anyway you can generate versioned files for all direct static files and after the pipeline bundles are created only create versioned files for these bundled pipeline files?
We use javascript files with the tag template
{% static 'my_image.jpg' %}
(from{% load static %}
).The problem with the current
PipelineCachedStorage
implementation is that this storage first the collects the pipeline bundled files and does later on a super call to collect the other static files.When it hits the
{% static 'my_image.jpg' %}
, it looks for a versioned file calledmy_image.3b1f39551527.jpg
, but this files still does not exists. It will only be generated once the call to thesuper_class.post_process(...)
is done.Is this done deliberated? or can the
PipelineCachedStorage
be changed to first collect the django static files (super_class.post_process(...)
) and afterwards collect the pipeline bundles?May be related to: #638 and #462.
The text was updated successfully, but these errors were encountered: