-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 1.07 KB
/
Copy pathindex.html
File metadata and controls
32 lines (29 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Simple Word Counter</title>
<link data-trunk rel="copy-file" href="app.webmanifest">
<link data-trunk rel="copy-dir" href="public" />
<link data-trunk rel="copy-file" href="service_worker.js">
<link data-trunk rel="css" href="dist/style/main.css" />
<link data-trunk rel="rust" data-wasm-opt="z" />
<link rel="manifest" href="app.webmanifest">
<link rel="icon" type="image/png" href="public/images/favicon.png">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" media="(prefers-color-scheme: light)" content="white">
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="black">
<script src="https://kit.fontawesome.com/fa657e4425.js" crossorigin="anonymous"></script>
<script>
// register ServiceWorker
window.onload = () => {
'use strict';
if ('serviceWorker' in navigator) {
navigator.serviceWorker
.register('./service_worker.js');
}
}
</script>
</head>
</html>