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
I already have django-manifest-loader working on my project, but today I started to set up Whitenoise; And I am wondering if there is any wierd interaction between the two packages?
My current flow is:
Run Webpack with SplitChunks, compression and optimization into Django's /static/ folder;
Run Django collectstatic to send the contents from /static/ to STATIC_ROOT.
Set STATICFILES_STORAGE = "django.contrib.staticfiles.storage.ManifestStaticFilesStorage" (default) such that neither Django nor Whitenoise perform any sort of work on my static assets (Webpack does that for me);
Now, my problem arises from here onwards.
From what I got from Whitenoise docs, it expects {% static ... %} to be used.
Do you know if using {% manifest_match ... %} ruins Whitenoise's operation? Or there is no correlation at all.
Django-manifest-loader docs tell us we can set the options below:
Should I set output_dir to be the path of STATIC_ROOT which happens to be an absolute path in my system?
Should I set manifest_file to staticfiles.json, since it is also the approach used by Whitenoise?
Hello developers;
I already have django-manifest-loader working on my project, but today I started to set up Whitenoise; And I am wondering if there is any wierd interaction between the two packages?
My current flow is:
/static/
folder;/static/
toSTATIC_ROOT
.Set
STATICFILES_STORAGE = "django.contrib.staticfiles.storage.ManifestStaticFilesStorage"
(default) such that neither Django nor Whitenoise perform any sort of work on my static assets (Webpack does that for me);Now, my problem arises from here onwards.
From what I got from Whitenoise docs, it expects
{% static ... %}
to be used.Django-manifest-loader docs tell us we can set the options below:
output_dir
to be the path ofSTATIC_ROOT
which happens to be an absolute path in my system?manifest_file
tostaticfiles.json
, since it is also the approach used by Whitenoise?The text was updated successfully, but these errors were encountered: