18 lines
558 B
HTML
18 lines
558 B
HTML
<html>
|
|
<head>
|
|
<!-- TODO:
|
|
EMPTY FAVICON, PREVENTS THE EXTRA REQUEST, but should be ignored by the rollup plugin:
|
|
<link rel="icon" href="data:,">
|
|
ONCE ADDED: change the snapshot to include full output (of browser test + code, instead of just .code)
|
|
-->
|
|
</head>
|
|
<body>
|
|
<script type="module">
|
|
import {b} from "./batman.js";
|
|
document.body.appendChild(
|
|
document.createTextNode(`Inline script including ${b()}`)
|
|
);
|
|
</script>
|
|
</body>
|
|
</html>
|