diff options
| author | Bobby <[email protected]> | 2022-03-15 22:45:23 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-03-15 22:45:23 -0400 |
| commit | f288ff1c9485d60865defa583c0e3a9ea56bd73b (patch) | |
| tree | 6aa00ae251ebf214f6e4bd077c86bc81569d7f93 /server.js | |
| parent | 018b087be49751c137831c976e24241b93c8518e (diff) | |
| download | luciferreeves.github.io-f288ff1c9485d60865defa583c0e3a9ea56bd73b.tar.xz luciferreeves.github.io-f288ff1c9485d60865defa583c0e3a9ea56bd73b.zip | |
remove twitter widgets
Diffstat (limited to 'server.js')
| -rw-r--r-- | server.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -32,11 +32,11 @@ app.use( ); app.use("/static", express.static(__dirname + "/static")); app.use(express.static(__dirname + "/public")); -app.use(routes); - -app.set("views", __dirname + "/public/views"); app.engine("html", require("ejs").renderFile); app.set("view engine", "html"); +app.set("views", __dirname + "/public/views"); +app.use(routes); + // Start the server app.listen(port, () => { |
