webpack.wap.dev.conf.js 282 Bytes
const webpack = require('webpack');
let webpackConfig = require('./basic/webpack.wap.base.conf.js');

webpackConfig.plugins.push(new webpack.DefinePlugin({
    __DEV__: true
}));
webpackConfig.plugins.push(new webpack.HotModuleReplacementPlugin());

module.exports = webpackConfig;