mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 10:08:57 +00:00
11 lines
385 B
C#
11 lines
385 B
C#
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; }
|
|
public string ProjectPath { get; set; }
|
|
}
|
|
} |