Fix static content serving
What? Why did this stop working?
This commit is contained in:
parent
ad21281840
commit
d106efb6ce
1 changed files with 3 additions and 3 deletions
|
@ -104,11 +104,11 @@ USE_TZ = True
|
||||||
MEDIA_ROOT = os.path.join(PACKAGE_ROOT, "site_media", "media")
|
MEDIA_ROOT = os.path.join(PACKAGE_ROOT, "site_media", "media")
|
||||||
MEDIA_URL = "/site_media/media/"
|
MEDIA_URL = "/site_media/media/"
|
||||||
|
|
||||||
STATIC_ROOT = os.path.join(PROJECT_ROOT, "static")
|
STATIC_ROOT = os.path.join(PROJECT_ROOT, 'static/src')
|
||||||
STATIC_URL = "/static/src/"
|
STATIC_URL = '/static/src/'
|
||||||
|
|
||||||
STATICFILES_DIRS = [
|
STATICFILES_DIRS = [
|
||||||
os.path.join(PROJECT_ROOT, "static", "src"),
|
os.path.join(PROJECT_ROOT, 'static/src'),
|
||||||
]
|
]
|
||||||
|
|
||||||
STATICFILES_FINDERS = [
|
STATICFILES_FINDERS = [
|
||||||
|
|
Loading…
Reference in a new issue