-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathindex.html
30 lines (28 loc) · 1.42 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="%VITE_PAGE_DESCRIPTION%"/>
<meta property="og:site_name" content="%VITE_PAGE_TITLE%" />
<meta property="og:type" content="website" />
<meta property="og:title" content="%VITE_PAGE_TITLE%">
<meta property="og:description" content="%VITE_PAGE_DESCRIPTION%">
<meta property="og:image" content="%VITE_DEPLOY_BASE_URL%/og-image.svg">
<link rel="canonical" href="%VITE_DEPLOY_BASE_URL%/">
<link rel="icon" href="/favicon.ico" sizes="any">
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<!-- Preload fonts to make canvas.js happy -->
<link rel="preload" as="font" type="font/woff2" crossorigin="anonymous"
href="node_modules/@fontsource-variable/noto-sans/files/noto-sans-latin-wght-normal.woff2"/>
<link rel="preload" as="font" type="font/woff2" crossorigin="anonymous"
href="node_modules/@fontsource-variable/noto-sans/files/noto-sans-cyrillic-wght-normal.woff2"/>
<link rel="preload" as="font" type="font/woff2" crossorigin="anonymous"
href="node_modules/material-icons/iconfont/material-icons.woff2"/>
<title>%VITE_PAGE_TITLE%</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/index.ts"></script>
</body>
</html>