1
0
mirror of https://api.glitch.com/git/presence-button synced 2024-11-05 12:37:30 +00:00

💒🌥 Checkpoint

./server.js:933874/59
This commit is contained in:
Glitch (hello-express) 2019-12-19 12:49:01 +00:00
parent c372868b13
commit cbe00e9a9e

View File

@ -35,7 +35,7 @@ const redirectToHTTPS = (req, res, next) => {
app.use("/api", redirectToHTTPS); app.use("/api", redirectToHTTPS);
app.use("/img", redirectToHTTPS); app.use("/img", redirectToHTTPS);
app.get("/", redirectToHTTPS); app.all("/", redirectToHTTPS); // no app.use here because it would match every path
app.get("/", (req, res) => { app.get("/", (req, res) => {
res.sendFile(__dirname + "/views/index.html"); res.sendFile(__dirname + "/views/index.html");
}); });