This might be a little difficult to explain with the title alone, but basically, if you have this kind of setup where you don't have a stylesheet in the HTML entries...
<!-- index.html -->
<!-- the HTML doesn't have any link tag to a stylesheet -->
<script type='module' src='./index.js'></script>
// index.js
import './style/normalize.css';
It wouldn't actually try to attach any stylesheets to that HTML, which I suppose somewhat makes sense? Though it does lead to confusion for people that are so used to only importing stylesheets via JS (say, modern-normalize)