Skip to content

Commit

Permalink
Missing semicolon semi
Browse files Browse the repository at this point in the history
  • Loading branch information
the1bit committed Oct 26, 2023
1 parent b926311 commit 8f84573
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ var app = express();
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'ejs');

app.use(logger('dev'))
app.use(logger('dev'));
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser())
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));

/* Kezdőlap */
Expand Down

0 comments on commit 8f84573

Please sign in to comment.