📍🍮 Checkpoint

./server.js:933874/240
This commit is contained in:
Glitch (hello-express) 2019-12-18 16:40:58 +00:00
parent 41f09e9473
commit 757e56c9e3
1 changed files with 1 additions and 1 deletions

View File

@ -32,10 +32,10 @@ const redirectToHTTPS = (req, res, next) => {
res.redirect("https://" + req.headers.host + req.url);
}
};
app.use("/", redirectToHTTPS);
app.use("/api", redirectToHTTPS);
app.use("/img", redirectToHTTPS);
app.get("/", redirectToHTTPS);
app.get("/", (req, res) => {
res.sendFile(__dirname + "/views/index.html");
});