All is doing fine when I collectstatic, it normally creates the cache files, all seems fine.
`Post-processed 'compiled/dashboard.min.css' as 'compiled/dashboard.min.7058dfd4311a.css'
Post-processed 'compiled/common.min.js' as 'compiled/common.min.ccc4b6941036.js'
Post-processed 'compiled/form.min.js' as 'compiled/form.min.f919b770e800.js'
Post-processed 'compiled/dashboard.min.js' as 'compiled/dashboard.min.a9893fbed25e.js'
`
but when I get on the website :
I have a 500 error because of :
ValueError at / The file ‘compiled/compiled.min.css’ could not be found with <core.custom_storage.GzipManifestPipelineStorage object at 0x7f1bd2aa87d0>.
That's strange that he doesn't look for the cached version of compiled/compiled.min.css
...
when I do a ./manage.py findstatic compiled/compiled.min.css it doesn't find it.
So I guess there is a problem to generate it.
Here is my custom storage :
from pipeline.storage import PipelineMixin
from whitenoise.django import GzipManifestStaticFilesStorage
class GzipManifestPipelineStorage(PipelineMixin, GzipManifestStaticFilesStorage):
pass
Hi,
thanks for this nice library !
All is doing fine when I collectstatic, it normally creates the cache files, all seems fine.
` but when I get on the website :
I have a 500 error because of :
ValueError at / The file ‘compiled/compiled.min.css’ could not be found with <core.custom_storage.GzipManifestPipelineStorage object at 0x7f1bd2aa87d0>.
That's strange that he doesn't look for the cached version of compiled/compiled.min.css ...
when I do a ./manage.py findstatic compiled/compiled.min.css it doesn't find it.
So I guess there is a problem to generate it.
Here is my custom storage :
Here are my pipeline settings:
In the logs the error is launch there :
if someone can help me would it be awesome !