Я не могу отправить файл css и html в файл res.send в файле express.js.
index.html
<div class="hdngTab">
<h1 style="align-content: center">Automation Utility</h1>
</div>
index.css
.hdngTab{
background-color: rgb(60, 120, 120);
box-sizing: border-box;
border: solid rgb(60, 120, 120);
text-align: center
}
index.js
const express = require("express");
const app = express();
const http = require("http").Server(app).listen(3000);
console.log("Server Started");
app.get("/", function (req, res) {
res.sendFile(__dirname + "/index.html");
}
)
Я попробовал приведенные ниже варианты, основанные на некоторых онлайн-ссылках, но ничего не помогло:
Передано index.css в корень, поскольку браузер должен загрузить его самостоятельно.
app.get('/index.css', function(req, res) {
res.sendFile(__dirname + "/" + "index.html");
});
Создал новую папку и переместил мои статические файлы ( html и css) в эту папку и заменил res.sendfile на app.use (express.static ( "FOLDERNAME"));
Есть ли другой возможный вариант решения?