#CSSが読み込めない
ディベロッパーツールで確認すると、
Refused to apply style from 'http://localhost:9000/css/reset.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
のエラー。
読んでみると、『MIMEタイプがサポートされていない』と書かれていますが、問題はそこではなくて。
cssのパスの違いにありました。
#パスを変える
├── dist
│ ├── index.html *
│ ├── main.js
│ ├── style.css
└── css
index.html(修正前)
<link rel="stylesheet" href="./css/style.css">
index.html(修正後)
<link rel="stylesheet" href="style.css">
原因は相対パスの起点にありました。
起点は、
現在ブラウザで実行されているファイルで、そこからの相対パスを書かなければいけません。