mirror of
https://github.com/haveno-dex/haveno-ui.git
synced 2025-01-09 22:49:32 -05:00
17 lines
396 B
HTML
17 lines
396 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta
|
||
|
http-equiv="Content-Security-Policy"
|
||
|
content="script-src 'self' blob:"
|
||
|
/>
|
||
|
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
|
||
|
<title>Vite App</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="app"></div>
|
||
|
<script src="./src/index.tsx" type="module"></script>
|
||
|
</body>
|
||
|
</html>
|