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
On production, while using: {% webpack_static 'filename.css' %}
I think it should resolve to /some/dir/filename.hash.css rather than /some/dir/filename.css
It would allow me to get URLs for prefetching/preloading.
Shouldn't webpack_static follow render_bundle behavior and return hashed version of file?
I cannot use render_bundle as .css file tag is created with type="text/css" rel="stylesheet" attributes.
The text was updated successfully, but these errors were encountered:
On production, while using:
{% webpack_static 'filename.css' %}
I think it should resolve to
/some/dir/filename.hash.css
rather than/some/dir/filename.css
It would allow me to get URLs for prefetching/preloading.
Shouldn't
webpack_static
followrender_bundle
behavior and return hashed version of file?I cannot use
render_bundle
as.css
file tag is created withtype="text/css" rel="stylesheet"
attributes.The text was updated successfully, but these errors were encountered: