UNPKG

297 BJavaScriptView Raw
1/* @flow */
2const webpackConfigFactory = require('./configFactory');
3
4module.exports = function serverConfigFactory(options /*: Object */ = {}, args /*: Object */ = {}) /*: Object */ {
5 const { mode = 'development' } = options;
6 return webpackConfigFactory({ target: 'server', mode }, args);
7};