在我的项目中,我使用.net核心和angular 7。我需要在每次部署后清除浏览器缓存。ng build--prod--output hashing=all,对我不起作用。请帮忙。
只需在web.config文件中添加以下标记
<configuration>
<system.webServer>
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="0.00:01:00"/>//1 minutes
</staticContent>
</system.webServer>
</configuration>