-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
40 lines (30 loc) · 782 Bytes
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Requires
const path = require('path');
const express = require('express');
const nunjucks = require('nunjucks');
const errorController = require('./controllers/error');
// Init express
const app = express();
// Config view engine
nunjucks.configure(
[
'node_modules/nhsuk-frontend/packages/components',
'views',
], {
express: app,
watch: true
});
app.set('view engine', 'njk');
// Meta title suffix
app.use((req, res, next) => {
res.locals.metaTitleSuffix = ' - NHS';
next();
});
// Parse body
// app.use(express.urlencoded({ extended: false }));
// Serve static
app.use(express.static(path.join(__dirname, 'public')));
// 404 fallback
app.use(errorController.get404);
// Listen
app.listen(process.env.PORT || 3000);