-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
34 lines (30 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Capsule SDK integration example using Vite, React, and TypeScript"
/>
<meta name="theme-color" content="#ff6700" />
<title>Capsule SDK Integration Example</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="preconnect" href="https://js.stripe.com" />
<link rel="preconnect" href="https://crypto-js.stripe.com" />
<meta
http-equiv="Content-Security-Policy"
content="script-src 'self' 'unsafe-eval' https://js.stripe.com https://crypto-js.stripe.com; worker-src 'self' blob:;"
/>
<meta http-equiv="X-Content-Type-Options" content="nosniff" />
<meta
http-equiv="Referrer-Policy"
content="strict-origin-when-cross-origin"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>