mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-29 01:22:07 +01:00
14f02a0b50
Thanks to @justinvdm for the help Merges: #2275
9 lines
161 B
JavaScript
9 lines
161 B
JavaScript
var base = require('./webpack.base.config');
|
|
var config = base('development');
|
|
|
|
|
|
// development overrides go here
|
|
config.watch = true;
|
|
|
|
module.exports = config;
|