beidou-webpack
Version:
beidou webpack middleware
13 lines (10 loc) • 336 B
JavaScript
;
const webpack = require('webpack');
const helper = require('../utils');
module.exports = (app, target = 'browser') => {
helper.injectPlugin(app);
const config = app.config.webpack;
const webpackConfig = helper.getWebpackConfig(app, config, target);
const compiler = webpack(webpackConfig);
return compiler;
};