dgf-prototype/frontend/index.html

24 lines
604 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/dgf.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DGF Prototype</title>
</head>
<body>
<div id="root"></div>
<script>
console.log('adding window message event listener');
window.addEventListener(
'message',
(event) => {
if (event.data?.target?.startsWith('metamask')) return;
console.log('window message', event);
},
);
</script>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>