Updating index HTML

This commit is contained in:
metacryst
2023-09-01 09:39:48 -05:00
parent d1c94b65c5
commit 656c1e1d37

View File

@@ -3,14 +3,14 @@
<head>
<title>Index</title>
<script type="module">
import * as quill from 'quill.js';
import * as quill from './Quill/quill.js';
window.quill = {};
Object.entries(quill).forEach(([name, exported]) => window.quill[name] = exported);
Object.entries(quill).forEach(([name, exported]) => window[name] = exported);
</script>
<script type="module" src="index.js"></script>
</head>
<body>
<script type="module" src="index.js"></script>
</body>
</html>