26 lines
905 B
HTML
26 lines
905 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<script>
|
||
|
var coverSupport = 'CSS' in window && typeof CSS.supports === 'function' && (CSS.supports('top: env(a)') ||
|
||
|
CSS.supports('top: constant(a)'))
|
||
|
document.write(
|
||
|
'<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0' +
|
||
|
(coverSupport ? ', viewport-fit=cover' : '') + '" />')
|
||
|
</script>
|
||
|
<link rel="icon" href="/static/icon.png" />
|
||
|
<meta name="keywords" content="p2p-explorer-web webrtc p2p file transfer explorer peerjs " />
|
||
|
<meta name="description" content="远程文件传输工具,远程文件web资源管理器,p2p-explorer-web" />
|
||
|
<title>p2p-explorer-web</title>
|
||
|
<!--preload-links-->
|
||
|
<!--app-context-->
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div id="app"><!--app-html--></div>
|
||
|
<script type="module" src="/src/main.ts"></script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|