1
0
Fork 0
forked from nin0/website

ejs will suffer

This commit is contained in:
nin0 2024-07-28 09:29:05 -04:00
parent c8414116ca
commit 45496ace17
4 changed files with 53 additions and 1 deletions

View file

@ -4,7 +4,7 @@ var app = express();
app.set("view engine", "ejs");
app.get("/", function(req, res) {
res.render("pages/index");
res.render("index");
});
app.listen(8080);