-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
29 lines (24 loc) · 1.05 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Website Content Editor</title>
<meta name="description" content="Markdown content editor for USDS">
<meta name="robots" content="None">
<!-- to debug CSP, use `build` then `preview` -->
%VITE_META_CSP%
<link rel="icon" href="favicon.ico">
<link rel="apple-touch-icon" href="apple-touch-icon.png" sizes="180x180">
<link rel="mask-icon" href="mask-icon.svg" color="#FFFFFF">
<meta name="theme-color" content="#ffffff">
<!-- this is the DESTINATION of the script when it's copied over. DO not add type="module" or vite will remove -->
<link rel="manifest" href="manifest.webmanifest" />
<link rel="stylesheet" media="all" href="https://usds.github.io/website-staging/assets/stylesheets/styles.css" />
</head>
<body id="body">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script src="registerSW.js"></script>
</body>
</html>