mirror of
https://github.com/joinmarket-webui/jam.git
synced 2026-08-13 12:33:26 +02:00
* 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>
18 lines
912 B
HTML
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>
|