Move static files dir
This commit is contained in:
parent
eb6462be50
commit
181d855033
|
@ -29,7 +29,7 @@ DEBUG = True
|
|||
ALLOWED_HOSTS = []
|
||||
|
||||
STATICFILES_DIRS = (
|
||||
'static/',
|
||||
os.path.join(BASE_DIR, 'static/'),
|
||||
)
|
||||
|
||||
# Application definition
|
||||
|
@ -106,4 +106,4 @@ USE_TZ = True
|
|||
# https://docs.djangoproject.com/en/1.7/howto/static-files/
|
||||
|
||||
STATIC_URL = '/static/'
|
||||
STATIC_ROOT = os.path.join(BASE_DIR, 'static/')
|
||||
STATIC_ROOT = os.path.join(BASE_DIR, 'cstatic/')
|
||||
|
|
Loading…
Reference in New Issue