Azure App Service で jsonファイルを返すように設定する

● Azure App Service で jsonファイルを返すように設定する

web.config

<?xml version="1.0"?>
 
<configuration>
    <system.webServer>
        <staticContent>
            <mimeMap fileExtension=".json" mimeType="application/json" />
     </staticContent>
    </system.webServer>
</configuration> 

No.1915
12/01 13:02

edit