Skip to content

Commit

Permalink
bibp
Browse files Browse the repository at this point in the history
  • Loading branch information
billy1479 committed Dec 13, 2023
1 parent 837aff8 commit bb89ec5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// module.exports = {
// "extends": "standard",
// "rules": {
// "semi": [2, "always"],
// "indent": "off"
// }
// };
module.exports = {
"extends": "standard",
"rules": {
"semi": [2, "always"],
"indent": "off"
}
};
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const upcomingFilmsFile = './client/Data/upcoming.json';

app.use(express.json());
const path = require('path');
app.use(express.static(path.join(__dirname, 'client/index.html')));
app.use(express.static(path.join(__dirname, 'client')));

const bookings = require(bookingsFile);
const currentFilms = require(currentFilmsFile);
Expand Down

0 comments on commit bb89ec5

Please sign in to comment.