You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
whenever the css for code coverage changes then the browser still has cache for the old file
A very easy way would be to include the version number in the URL of the css
So change: <link href="{{path_to_root}}_css/bootstrap.min.css" rel="stylesheet" type="text/css">
to <link href="{{path_to_root}}_css/bootstrap.min.css?v={{version}}" rel="stylesheet" type="text/css">
that should be done for all the css files
The text was updated successfully, but these errors were encountered:
whenever the css for code coverage changes then the browser still has cache for the old file
A very easy way would be to include the version number in the URL of the css
So change:
<link href="{{path_to_root}}_css/bootstrap.min.css" rel="stylesheet" type="text/css">
to
<link href="{{path_to_root}}_css/bootstrap.min.css?v={{version}}" rel="stylesheet" type="text/css">
that should be done for all the css files
The text was updated successfully, but these errors were encountered: