mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-29 17:36:49 +01:00
11 lines
263 B
JavaScript
11 lines
263 B
JavaScript
var base = require('./webpack.base.config');
|
|
var config = base('development');
|
|
|
|
|
|
// development overrides go here
|
|
config.watch = true;
|
|
// See http://webpack.github.io/docs/configuration.html#devtool
|
|
config.devtool = 'inline-source-map';
|
|
|
|
module.exports = config;
|