I get this error:
Failed to load module script: The server responded with a non-JavaScript MIME type of "". Strict MIME type checking is enforced for module scripts per HTML spec.
To be honest I tried changing the baseUrl in the stencil config and tried commenting this line:
<script type="module" src="./build/app.esm.js"></script>
Just to make sure that it runs the es5 app.js
<script nomodule src="./build/app.js"></script>
But that didn’t work either. I don’t know what else to do anymore.