В IIS я получаю это при открытии любого модуля в IIS.
---------------------------
Error Pages
---------------------------
There was an error while performing this operation.
Details:
Filename: \\?\C:\inetpub\app\web.config
Error:
---------------------------
OK
---------------------------
Как я могу понять, что это такое?
Я также прочитал вокруг, что, может быть, мне не хватает модуля? Может быть, переписать URL?
<rewrite>
<rules>
<rule name="SPA Routes" stopProcessing="true">
<!-- match everything by default -->
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<!-- unless its a file -->
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<!-- or a directory -->
<!--<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />-->
<!-- or is under the /api directory -->
<add input="{REQUEST_URI}" pattern="^/(api)" negate="true" />
<!-- list other routes or route prefixes here if you need to handle them server side -->
</conditions>
<!-- rewrite it to /index.html -->
<action type="Rewrite" url="App/index.html" />
</rule>
</rules>
</rewrite>
Кто-нибудь знает, что мне делать?
Спасибо