2023-12-07 23:22:08 +00:00
|
|
|
<!--
|
2024-02-13 15:59:27 +00:00
|
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-12-07 23:22:08 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
|
|
|
<!--
|
|
|
|
開発モードのviteはこのファイルを起点にサーバーを起動します。
|
|
|
|
このファイルに書かれた [t]js のリンクと (s)cssのリンクと、その依存関係にあるファイルはビルドされます
|
|
|
|
-->
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
2023-12-16 04:23:25 +00:00
|
|
|
<title>[DEV] Loading...</title>
|
2023-12-07 23:22:08 +00:00
|
|
|
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
|
|
|
|
<meta
|
|
|
|
http-equiv="Content-Security-Policy"
|
2024-01-06 11:14:33 +00:00
|
|
|
content="default-src 'self' https://newassets.hcaptcha.com/ https://challenges.cloudflare.com/ http://localhost:7493/;
|
2023-12-09 12:52:25 +00:00
|
|
|
worker-src 'self';
|
2024-01-06 11:14:33 +00:00
|
|
|
script-src 'self' 'unsafe-eval' https://*.hcaptcha.com https://challenges.cloudflare.com;
|
2023-12-09 12:52:25 +00:00
|
|
|
style-src 'self' 'unsafe-inline';
|
2024-02-01 23:29:13 +00:00
|
|
|
img-src 'self' data: blob: www.google.com xn--931a.moe launcher.moe localhost:3000 localhost:5173 127.0.0.1:5173 127.0.0.1:3000;
|
2023-12-16 04:23:25 +00:00
|
|
|
media-src 'self' localhost:3000 localhost:5173 127.0.0.1:5173 127.0.0.1:3000;
|
2024-01-17 04:26:36 +00:00
|
|
|
connect-src 'self' localhost:3000 localhost:5173 127.0.0.1:5173 127.0.0.1:3000 https://newassets.hcaptcha.com;
|
|
|
|
frame-src *;"
|
2023-12-07 23:22:08 +00:00
|
|
|
/>
|
2023-12-08 07:54:33 +00:00
|
|
|
<meta property="og:site_name" content="[DEV BUILD] Misskey" />
|
2023-12-09 12:52:25 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2024-02-04 12:02:03 +00:00
|
|
|
<meta name="theme-color-orig" content="#86b300">
|
2023-12-07 23:22:08 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2024-01-28 12:07:22 +00:00
|
|
|
<div id="sharkey_app"></div>
|
2023-12-07 23:22:08 +00:00
|
|
|
<script type="module" src="./_dev_boot_.ts"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|