Disable caching for config.json file (#421)

* Disable caching for config.json file

* Disable cache when fetching config.json
This commit is contained in:
Tanuj Mittal
2021-02-04 15:25:13 +05:30
committed by GitHub
parent 3b6fda4fa5
commit 3fd014ddad
2 changed files with 23 additions and 5 deletions

View File

@@ -34,26 +34,40 @@
<clientCache cacheControlMode="DisableCache" />
</staticContent>
</system.webServer>
</location>
</location>
<location path="hostedExplorer.html">
<system.webServer>
<staticContent>
<clientCache cacheControlMode="DisableCache" />
</staticContent>
</system.webServer>
</location>
</location>
<location path="config.json">
<system.webServer>
<staticContent>
<clientCache cacheControlMode="DisableCache" />
</staticContent>
</system.webServer>
</location>
<location path="mpac/explorer.html">
<system.webServer>
<staticContent>
<clientCache cacheControlMode="DisableCache" />
</staticContent>
</system.webServer>
</location>
</location>
<location path="mpac/hostedExplorer.html">
<system.webServer>
<staticContent>
<clientCache cacheControlMode="DisableCache" />
</staticContent>
</system.webServer>
</location>
</location>
<location path="mpac/config.json">
<system.webServer>
<staticContent>
<clientCache cacheControlMode="DisableCache" />
</staticContent>
</system.webServer>
</location>
</configuration>