Skip to content

Commit bc1c4f4

Browse files
committed
Unconditionally enable debugging in the dev-server
1 parent 8b045ed commit bc1c4f4

File tree

1 file changed

+2
-1
lines changed
  • src/Components/Blazor/DevServer/src/Server

1 file changed

+2
-1
lines changed

src/Components/Blazor/DevServer/src/Server/Program.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ public static IHost BuildWebHost(string[] args) =>
3535
{
3636
cb.AddInMemoryCollection(new Dictionary<string, string>
3737
{
38-
[WebHostDefaults.StaticWebAssetsKey] = name
38+
[WebHostDefaults.StaticWebAssetsKey] = name,
39+
["useWebAssemblyDebugging"] = "true",
3940
});
4041
}
4142
})

0 commit comments

Comments
 (0)