Repository URL to install this package:
|
Version:
1.1.17 ▾
|
const {ChainedMap} = require('./Chains')
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',
'progress',
'public',
'publicPath',
'proxy',
'quiet',
'setup',
'staticOptions',
'stats',
'watchContentBase',
'watchOptions',
])
}
}