An error occurred while loading the file. Please try again.
-
Pado authoreda8f8dd7c
const express = require("express");
const app = express();
const port = process.env.PORT || 3000;
app.use(express.static("public"));
app.get("/", (req, res) => {
res.sendFile(__dirname + "/index.html");
});
app.get("/index.html", (req, res) => {
res.redirect("/");
});
app.listen(port, () => {
console.log(`App listening at localhost:${port}`);
});