Merge pull request #20 from BridgeCityBicycleCoop/development

Webpack settings were wrong.
This commit is contained in:
Drew Larson
2017-01-16 13:17:11 -06:00
committed by GitHub
2 changed files with 10 additions and 5 deletions
@@ -126,6 +126,7 @@ STATICFILES_DIRS = [
('vendor', os.path.join(BASE_DIR, '../vendor')),
os.path.join(BASE_DIR, '../assets')
]
STATIC_ROOT = 'static'
STATIC_URL = '/static/'
@@ -37,8 +37,12 @@ LOGGING = {
},
}
WEBPACK_LOADER.update({
'BUNDLE_DIR_NAME': 'assets/dist/',
'STATS_FILE': os.path.join(BASE_DIR, '../webpack-stats-prod.json')
})
WEBPACK_LOADER = {
'DEFAULT': {
'CACHE': True,
'BUNDLE_DIR_NAME': 'assets/dist/', # must end with slash
'STATS_FILE': os.path.join(BASE_DIR, '../webpack-stats-prod.json'),
'POLL_INTERVAL': 0.1,
'IGNORE': ['.+\.hot-update.js', '.+\.map']
}
}