Skip to content

Commit

Permalink
Remove unnecessary version number references from Web.config
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel15 committed Nov 30, 2015
1 parent 66164c3 commit 3508cad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/React.Sample.Mvc4/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</pages>

<httpHandlers>
<add verb="GET" path="*.jsx" type="React.Web.BabelHandlerFactory, React.Web, Version=2.0, Culture=neutral" />
<add verb="GET" path="*.jsx" type="React.Web.BabelHandlerFactory, React.Web" />
</httpHandlers>
</system.web>

Expand All @@ -50,7 +50,7 @@

<handlers>
<remove name="babel" />
<add name="babel" verb="GET" path="*.jsx" type="React.Web.BabelHandlerFactory, React.Web, Version=2.0, Culture=neutral" preCondition="integratedMode" />
<add name="babel" verb="GET" path="*.jsx" type="React.Web.BabelHandlerFactory, React.Web" preCondition="integratedMode" />
</handlers>

</system.webServer>
Expand Down

0 comments on commit 3508cad

Please sign in to comment.