Files
plugin-html/test/multi-entry/fixtures/admin/index.html
2023-05-02 05:05:42 +02:00

13 lines
321 B
HTML

<html>
<head>
</head>
<body>
<div id="root"></div>
<script type="module">
import {bootstrap} from "../app/app.js"
import {adminDeps} from "../app/admin-deps.js";
bootstrap(document.getElementById('root'), adminDeps());
</script>
</body>
</html>