You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -27,7 +28,8 @@ public static void UseDevelopmentServer(
27
28
thisISpaBuilderspaBuilder,
28
29
stringnpmScript,
29
30
stringwaitText,
30
-
stringserverName="App")
31
+
stringserverName="App",
32
+
Dictionary<string,string>extraArgs=null)
31
33
{
32
34
33
35
if(string.IsNullOrEmpty(waitText))
@@ -47,7 +49,7 @@ public static void UseDevelopmentServer(
47
49
thrownewInvalidOperationException($"To use {nameof(UseDevelopmentServer)}, you must supply a non-empty value for the {nameof(SpaOptions.SourcePath)} property of {nameof(SpaOptions)} when calling {nameof(SpaApplicationBuilderExtensions.UseSpa)}.");
Copy file name to clipboardExpand all lines: src/Middleware/SpaServices.Extensions/src/ReactDevelopmentServer/ReactDevelopmentServerMiddlewareExtensions.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ public static void UseReactDevelopmentServer(
26
26
thisISpaBuilderspaBuilder,
27
27
stringnpmScript)
28
28
{
29
-
DevelopmentServerMiddlewareExtensions.UseReactDevelopmentServer(spaBuilder,npmScript,"Starting the development server","create-react-app");
29
+
DevelopmentServerMiddlewareExtensions.UseDevelopmentServer(spaBuilder,npmScript,"Starting the development server","create-react-app");
0 commit comments