Allow explicit configuration of port number for webpack dev middleware server. Fixes #223.

This commit is contained in:
SteveSandersonMS
2016-07-27 11:13:09 +01:00
parent 14337e32ab
commit de960d80aa
3 changed files with 7 additions and 3 deletions

View File

@@ -3,6 +3,7 @@ namespace Microsoft.AspNetCore.SpaServices.Webpack
public class WebpackDevMiddlewareOptions
{
public bool HotModuleReplacement { get; set; }
public int HotModuleReplacementServerPort { get; set; }
public bool ReactHotModuleReplacement { get; set; }
public string ConfigFile { get; set; }
}