14 lines
439 B
HTML
14 lines
439 B
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<!-- 内容安全策略:https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy -->
|
||
<meta http-equiv="Content-Security-Policy" content="script-src 'self' blob: 'unsafe-eval' 'unsafe-inline' 'unsafe-hashes'">
|
||
<title>MapDownload</title>
|
||
</head>
|
||
<body>
|
||
<div id="app"></div>
|
||
<script src="./src/index.js" type="module"></script>
|
||
</body>
|
||
</html>
|