Angular项目热更新CSS报错的解决方案

94 阅读1分钟

报错具体信息

Refused to apply style from URL because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.

解决方案

index.html文件中的<base href=".">修改为<base href="/">(如果没有则添加)

<!doctype html>
<html lang="en">

<head>
  <meta charset="utf-8">
  <title>ZaiHua</title>
  <base href="/">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="icon" type="image/x-icon" href="assets/img/Cat.png">
</head>

<body>
  <app-root></app-root>
</body>

</html>