-
Notifications
You must be signed in to change notification settings - Fork 60
Closed
Labels
Description
with kinda the default configuration i get a wrong paths in the generated css file
/*# sourceMappingURL=../COMPILED/sass/styles.css.map */
being in the sass folder this results in the following URL:
/static/COMPILED/COMPILED/sass/styles.css.map HTTP/1.1" 404 1825 which obviously aint there
My settings are:
STATICFILES_FINDERS = [
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'static_precompiler.finders.StaticPrecompilerFinder',
]
STATIC_PRECOMPILER_COMPILERS = (
('static_precompiler.compilers.libsass.SCSS', {
"sourcemap_enabled": True,
}),
('static_precompiler.compilers.libsass.SASS', {
"sourcemap_enabled": True,
}),
)
Whats wrong here?