Skip to content

Commit

Permalink
public-issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Aneeshaik committed Jul 31, 2024
1 parent 9b4d866 commit 9a891a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ let items = ["WakeUp", "Do Exercise", "Eat"];
app.set('view engine', 'ejs');
app.set('views', path.join(__dirname, 'views'));
app.use(bodyParser.urlencoded({ extended: true }));
app.use(express.static('public'));
app.use(express.static(path.join(__dirname+ 'public')));

app.get("/", function (req, res) {
let today = new Date();
Expand Down

0 comments on commit 9a891a8

Please sign in to comment.