1
0
mirror of https://github.com/fspc/workstand.git synced 2025-02-23 09:13:23 -05:00

Merge pull request #12 from BridgeCityBicycleCoop/development

Update webpack production settings
This commit is contained in:
Drew Larson 2017-01-15 16:52:07 -06:00 committed by GitHub
commit 7a7d5d40a5

View File

@ -37,12 +37,8 @@ LOGGING = {
}, },
} }
WEBPACK_LOADER = {
'DEFAULT': { WEBPACK_LOADER.update({
'CACHE': False, 'BUNDLE_DIR_NAME': 'assets/dist/',
'BUNDLE_DIR_NAME': 'dist/', 'STATS_FILE': os.path.join(BASE_DIR, '../../webpack-stats-prod.json')
'STATS_FILE': os.path.join(BASE_DIR, '../webpack-stats-prod.json'), })
'POLL_INTERVAL': 0.1,
'IGNORE': ['.+\.hot-update.js', '.+\.map']
}
}