fliphub-monorepo
Version:
the builder of builders
30 lines (28 loc) • 512 B
JavaScript
const ChainedMap = require('./ChainedMap');
module.exports = class extends ChainedMap {
constructor(parent) {
super(parent);
this.extend([
'clientLogLevel',
'compress',
'contentBase',
'filename',
'headers',
'historyApiFallback',
'host',
'hot',
'hotOnly',
'https',
'inline',
'lazy',
'noInfo',
'overlay',
'port',
'proxy',
'quiet',
'setup',
'stats',
'watchContentBase'
]);
}
};