-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
54 lines (49 loc) · 1.94 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="A lightweight blogging app built with React, PocketBase(SQLite) and Vite" />
<meta name="keywords" content="React, Pocketbase, Typescript, Vite" />
<meta name="author" content="Albenis Kerqeli" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg+xml" href="./src/assets/react.svg" />
<link rel="stylesheet" href="./src/index.css" media="none" onload="if(media!='all')media='all'" />
<link
rel="prefetch"
crossorigin="anonymous"
href="https://react-pocketbase-microblog.pockethost.io/api/collections/blogs/records?page=0&perPage=30&sort=-created&expand=user&fields=id%2Ctitle%2Cimage%2Cexpand.user.avatar%2C%20expand.user.username%2C%20user%20"
as="fetch"
/>
<!-- <link rel="modulepreload" href="./src/routes/SingleBlog/SingleBlog.tsx" /> -->
<!-- <link
rel="preload"
crossorigin="anonymous"
href="/src/routes/Home/Home.tsx?t=1717117456612"
as="script"
type="text/javascript"
/>
<link
rel="preload"
crossorigin="anonymous"
href="/src/components/BlogsList/BlogsList.tsx?t=1717117102691"
as="script"
type="text/javascript"
/>
<link
rel="preload"
crossorigin="anonymous"
href="/src/components/Blog/Blog.tsx?t=1717117102691"
as="script"
type="text/javascript"
/> -->
<!-- <link rel="preload" as="style" href="./src/index.css" fetchpriority="high" onload="this.rel='stylesheet'" /> -->
<!-- <link rel="preconnect" as="link" href="https://avatar.oxro.io" />
<link rel="preconnect" as="link" href="https://pockethost.io/" /> -->
<!-- <link rel="modulepreload" href="/src/main.tsx" /> -->
<title>PocketBlog</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>