I am using the FF Dev build that supports ES6 modules. When I use
<script type="module" src="./script.js">
script.js triggers the download of other scripts in its import section at the start of the file, but that does not happen when I use:
fetch("./script.js")
I did not find how to specify the script type in the Fetch API.