summaryrefslogtreecommitdiff
path: root/packages/frontend/src/index.html
blob: f9ce113687eb1c0125c5228ca862a31cf12e6a21 (plain)
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
<!--
  SPDX-FileCopyrightText: syuilo and misskey-project
  SPDX-License-Identifier: AGPL-3.0-only
-->

<!--
  開発モードのviteはこのファイルを起点にサーバーを起動します。
  このファイルに書かれた [t]js のリンクと (s)cssのリンクと、その依存関係にあるファイルはビルドされます
-->

<!DOCTYPE html>
<html>
<head>
	<meta charset="UTF-8" />
	<title>[DEV] Loading...</title>
	<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
	<meta
		http-equiv="Content-Security-Policy"
		content="default-src 'self' https://newassets.hcaptcha.com/ https://challenges.cloudflare.com/ http://localhost:7493/;
			worker-src 'self' blob:;
			script-src 'self' 'unsafe-eval' https://*.hcaptcha.com https://challenges.cloudflare.com https://esm.sh https://cdn.jsdelivr.net https://raw.esm.sh;
			style-src 'self' 'unsafe-inline';
			img-src 'self' data: blob: www.google.com xn--931a.moe localhost:3000 localhost:5173 127.0.0.1:5173 127.0.0.1:3000 activitypub.software secure.gravatar.com avatars.githubusercontent.com;
			media-src 'self' localhost:3000 localhost:5173 127.0.0.1:5173 127.0.0.1:3000;
			connect-src 'self' localhost:3000 localhost:5173 127.0.0.1:5173 127.0.0.1:3000 https://newassets.hcaptcha.com https://api.listenbrainz.org https://api.friendlycaptcha.com https://raw.esm.sh;
			frame-src *;"
	/>
	<meta property="og:site_name" content="[DEV BUILD] Sharkey" />
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<meta name="theme-color-orig" content="#86b300">
	<link rel='stylesheet' href='/assets/phosphor-icons/bold/style.css'>
	<link rel='stylesheet' href='/static-assets/fonts/sharkey-icons/style.css'>
</head>

<body>
<div id="sharkey_app"></div>
<script type="module" src="./_dev_boot_.ts"></script>
</body>
</html>