Removed 'must-revalidate' from Cache-Control header

This commit is contained in:
Chris Kankiewicz
2021-06-20 21:11:57 -07:00
parent c706233327
commit 7926f9048a

View File

@@ -29,6 +29,6 @@ class CacheMiddleware
}
}
return $response->withHeader('Cache-Control', 'max-age=0, must-revalidate');
return $response->withHeader('Cache-Control', 'max-age=0');
}
}