UNPKG

create-js-app-scripts

Version:
8 lines (6 loc) 297 B
/* @flow */ const webpackConfigFactory = require('./configFactory'); module.exports = function clientConfigFactory(options /*: Object */ = {}, args /*: Object */ = {}) /*: Object */ { const { mode = 'development' } = options; return webpackConfigFactory({ target: 'client', mode }, args); };