Point static urls to the build dir rather than src dir
This commit is contained in:
parent
233818c33b
commit
bc3edb80d9
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ MEDIA_ROOT = os.path.join(PACKAGE_ROOT, "site_media", "media")
|
|||
MEDIA_URL = "/site_media/media/"
|
||||
|
||||
STATIC_ROOT = os.path.join(PROJECT_ROOT, 'static/build')
|
||||
STATIC_URL = '/static/src/'
|
||||
STATIC_URL = '/static/build/'
|
||||
|
||||
STATICFILES_DIRS = [
|
||||
os.path.join(PROJECT_ROOT, 'static/src'),
|
||||
|
|
Loading…
Reference in a new issue