fix(base.html): prevent CSS caching issues
All checks were successful
Build and Deploy Static Site / build (push) Successful in 57s
All checks were successful
Build and Deploy Static Site / build (push) Successful in 57s
Append a version query string to the base.css link to ensure users always load the most recent version of the stylesheet, addressing issues with outdated cached CSS on client browsers.
This commit is contained in:
parent
8b70654fb8
commit
009ab87552
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@
|
||||||
<link rel="icon" type="image/png" href="assets/img/logo_inv_grad.png" />
|
<link rel="icon" type="image/png" href="assets/img/logo_inv_grad.png" />
|
||||||
<title>{% block title %}{% endblock %} - Private.coffee</title>
|
<title>{% block title %}{% endblock %} - Private.coffee</title>
|
||||||
<link rel="stylesheet" href="assets/dist/css/bootstrap.min.css" />
|
<link rel="stylesheet" href="assets/dist/css/bootstrap.min.css" />
|
||||||
<link rel="stylesheet" href="assets/css/base.css" />
|
<link rel="stylesheet" href="assets/css/base.css?v=24080401" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
Loading…
Reference in a new issue