Changeset - d106efb6ce20
[Not reviewed]
0 1 0
Sachi King - 7 years ago 2017-06-10 03:19:40
nakato@nakato.io
Fix static content serving

What? Why did this stop working?
1 file changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
pinaxcon/settings.py
Show inline comments
...
 
@@ -104,11 +104,11 @@ USE_TZ = True
 
MEDIA_ROOT = os.path.join(PACKAGE_ROOT, "site_media", "media")
 
MEDIA_URL = "/site_media/media/"
 

	
 
STATIC_ROOT = os.path.join(PROJECT_ROOT, "static")
 
STATIC_URL = "/static/src/"
 
STATIC_ROOT = os.path.join(PROJECT_ROOT, 'static/src')
 
STATIC_URL = '/static/src/'
 

	
 
STATICFILES_DIRS = [
 
    os.path.join(PROJECT_ROOT, "static", "src"),
 
    os.path.join(PROJECT_ROOT, 'static/src'),
 
]
 

	
 
STATICFILES_FINDERS = [
0 comments (0 inline, 0 general)