Skip to content

Commit 1ee0a0a

Browse files
authored
Fixes (#5)
1 parent a8b26ac commit 1ee0a0a

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<meta charset="UTF-8" />
66
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8+
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
89
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" media="(prefers-color-scheme: dark)" />
910
<link rel="shortcut icon" href="favicon-dark.ico" type="image/x-icon" media="(prefers-color-scheme: light)" />
1011
<title>Virtual Clicker</title>
@@ -277,4 +278,4 @@ <h1 class="text-placeholder">000</h1>
277278
<script src="src/main.js" type="module"></script>
278279
</body>
279280

280-
</html>
281+
</html>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "virtual-clicker",
33
"private": true,
4-
"version": "4.1.0",
4+
"version": "4.2.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --host",

vite.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import webfontDownload from "vite-plugin-webfont-dl";
2-
import version from "vite-plugin-package-version";
1+
import webfontDownload from 'vite-plugin-webfont-dl';
2+
import version from 'vite-plugin-package-version';
33

44
export default {
5-
plugins: [webfontDownload(), version()],
5+
plugins: [webfontDownload(), version()]
66
};

0 commit comments

Comments
 (0)