-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
48 lines (41 loc) · 2.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="author" content="piotr@piech.dev" />
<meta name="description"
content="A React + modern Redux (RTK) boilerplate for a fully configured quick start with automatic formatting and linting with ESLint & Prettier. VS Code settings bundled with the boilerplate, including recommended extensions for automatic formatting via a one-click install. Scores perfect 100/100/100/100 score in Chrome Lighthouse." />
<meta name="keywords"
content="react, redux, template, boilerplate, typescript, eslint, accessibility, prettier, netlify, rtk, typescript-eslint, vitejs, rtk-query">
<meta property="og:title" content="reactplate" />
<meta property="og:description"
content="A React + modern Redux (RTK) boilerplate for a fully configured quick start with automatic formatting and linting with ESLint & Prettier. VS Code settings bundled with the boilerplate, including recommended extensions for automatic formatting via a one-click install. Scores perfect 100/100/100/100 score in Chrome Lighthouse.">
<meta property="og:url" content="https://reatplate.com" />
<meta name="robots" content="follow" />
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<base href="/" />
<link rel="icon" type="image/png" href="favicon/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="%favicon/favicon.svg" />
<link rel="shortcut icon" href="favicon/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="reactplate" />
<link rel="manifest" href="favicon/site.webmanifest" />
<link rel="preconnect" href="https://api.spaceflightnewsapi.net" />
<link rel="dns-prefetch" href="https://api.spaceflightnewsapi.net" />
<title>reactplate</title>
<script>
if (window.MSCompatibleInfo) {
var error =
"Internet Explorer is not supported. Please use a modern browser instead.";
document.querySelector("html").innerHTML = error;
throw new Error(error);
}
</script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app. </noscript>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>