2023-03-10 15:52:14 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<title>Demo page</title>
|
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
|
|
|
<link rel="stylesheet" href="public/bundle.css">
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
|
|
<h1>Svelte embedding demo</h1>
|
2023-03-16 15:45:27 +00:00
|
|
|
|
2023-03-10 15:52:14 +00:00
|
|
|
<p>Below, we have inserted a <code>script</code> tag that should
|
|
|
|
|
renter a Svelte component upon loading this page.</p>
|
|
|
|
|
|
2023-03-16 15:45:27 +00:00
|
|
|
<script
|
|
|
|
|
src="public/bundle.js"
|
|
|
|
|
data-chat-type="GLOBAL"
|
|
|
|
|
data-chat-tags="nostrica"
|
|
|
|
|
data-relays="ws://localhost:8080"
|
|
|
|
|
></script>
|
|
|
|
|
<link rel="stylesheet" href="public/bundle.css">
|
|
|
|
|
></script>
|
|
|
|
|
|
2023-03-10 15:52:14 +00:00
|
|
|
|
|
|
|
|
<p>This text will come after the embedded content.</p>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|