Resource interpreted as Stylesheet but transferred with MIME type text/html:
код node js:
var http = require('http');
var fs = require("fs");
http.createServer(function (request, response) {
console.dir("start");
fs.readFile("SitePages/ViewPage.html", 'utf8', function(err, data) {
if(err)
response.end("ошибка файл ненайден")
else {
response.writeHead(200, {'Content-Type': 'text/html' });
response.end(data);
}
})
}).listen(3000);
код css
body {
background: red;
}
код html
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css" type="text/css">
</head>
<body>
23523253325325
</body>
</html>