Use type="module" on script tags to enable ES modules in browsers.
<script type="module" src="app.js"></script>
<script type="module">
import { init } from "./app.js";
init();
</script>
Module scripts are deferred by default and run in strict mode.