when a user uses Ctrl+F5 to force a page refresh, the css/js/html file is reloaded.
if the css/js/html file is not modified, it will take a long time to reload.
after looking up the data, you can determine whether the file has been updated by adding a hash value to the file suffix; this method is suitable for modifying the file so that the browser overwrites the old file.
but for now, what I want is for the user to use Ctrl+F5 to force the page refresh, but because the css/js/html file hasn"t changed, it doesn"t have to reload, just read the cache.
is there any way to achieve this requirement?