当我部署具有节点后端的React应用程序时,它不会更新CSS和前端应用程序文件。我必须清除浏览器缓存才能使其正常工作。
我在de index.html中添加了以下代码,但无效:
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 2019 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
我可以在应用程序级别上执行某些操作吗? 我是否需要在Web服务器级别执行某些操作,例如Apache?