wmr icon indicating copy to clipboard operation
wmr copied to clipboard

Support inline module scripts in HTML

Open developit opened this issue 4 years ago • 0 comments

It would be nice to make this work:

<!DOCTYPE html>
<body>
  <script type="module">
    import { h, render } from 'preact';
    render(h('h1', null, 'hello world'), document.body);
  </script>
</body>

developit avatar Jan 07 '21 17:01 developit