Skip to content

Commit a9cb6e6

Browse files
committed
Clarified a few points in the documentation.
1 parent d4adb16 commit a9cb6e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/jekyll/guides/azure.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: docs
33
title: Azure
44
---
55

6-
From **version 2.2.0** onwards ReactJS.NET works out of the box in Azure using the V8 JavaScript engine. Versions prior to 2.2.0 will fall back to using MSIE JavaScript engine and you may experience JavaScript errors during server-side rendering that you aren't experiencing locally.
6+
From **version 2.2** onwards ReactJS.NET works out of the box in Azure using the V8 JavaScript engine. Versions prior to 2.2.0 will fall back to using MSIE JavaScript engine and you may experience JavaScript errors during server-side rendering that you aren't experiencing locally.
77

88
You can run the following code to check which JavaScript engines are available on the machine that your application is running on. The engine with the lowest priority is used by ReactJS.NET.
99

@@ -31,7 +31,7 @@ public string GetAvailableEngines()
3131
}
3232
```
3333

34-
To force ReactJS.NET to use the V8 JavaScript engine (and throw an exception if it isn't available) set the AllowMsieEngine configuration property to false.
34+
To force ReactJS.NET to use the V8 JavaScript engine (and throw an exception if it isn't available) set the AllowMsieEngine configuration property to false. The following example applies to ASP.NET 5. Those using ASP.NET 4 should do this in ReactConfig.cs file instead.
3535

3636
```csharp
3737
app.UseReact(config =>

0 commit comments

Comments
 (0)