Olá,
estou com dificuldade de usar um CSS que criei próprio para uma página, o HTML do index está da seguinte forma:
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta charset="utf-8">
<!-- Title-->
<title>Lires Golden</title>
<!-- declaração do CSS -->
<link href="./css/color-schemes/gold.css" id="changeable-colors" rel="stylesheet" type="text/css" />
<!-- /.CSS Ends -->
</head>
<body>
<app-root></app-root>
</body>
</html>
Porém ao rodar o projeto aparece o seguinte erro no console:
Refused to apply style from 'http://localhost:4200/css/color-schemes/gold.css' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.
estou usando o CLI para desenvolver essa aplicação.