'Resource interpreted as Image but transferred with MIME type text/html'とコンソールに出るときの対応

コンソールで以下の様な表示が

Resource interpreted as Image but transferred with MIME type text/html
Resource interpreted as Image but transferred with MIME type text/css

MIME type text/htmlの場合は対象のhtml
MIME type text/cssの場合は対象のcssの画像のパスが正しくないことが原因のようです。

<img src='#'>

background: url('');

の様になっているところを直すと出なくなりました。