jam/index.html
Thebora Kompanioni 7be8d4863a
Some checks are pending
Build / build (v26.3.0) (push) Waiting to run
CodeQL / Analyze (push) Waiting to run
Deploy Storybook / deploy (push) Waiting to run
chore: add csp meta tag (#1325)
* chore: add csp meta tag

* chore: add base-uri and form-action to csp tag

Co-authored-by: Kishore B <kishorebsm8@gmail.com>

---------

Co-authored-by: Kishore B <kishorebsm8@gmail.com>
2026-07-09 14:06:14 +05:30

18 lines
912 B
HTML

<!DOCTYPE html>
<html lang="en" suppressHydrationWarning>
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; frame-src 'none'; object-src 'none'; base-uri 'self'; form-action 'self';">
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#000000" />
<link rel="manifest" href="/site.webmanifest" crossorigin="use-credentials" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Jam for JoinMarket</title>
</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>