We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68e2271 commit 6687015Copy full SHA for 6687015
generators/app/templates/src/app.ts
@@ -16,9 +16,9 @@ const dev = isDev();
16
17
// plug middleware
18
app.use(morgan(dev ? 'dev' : 'common'));
19
+app.use(health());
20
app.use(bodyParser.urlencoded({ extended: true }));
21
app.use(bodyParser.json());
-app.use(health());
22
23
// plug components
24
app.use(components.path, components.routes({ dev }));
0 commit comments