From 65888ffdcbdd4d663360cd2faa15997b8a1f99c7 Mon Sep 17 00:00:00 2001 From: Noah Loomans Date: Fri, 26 May 2017 18:47:26 +0200 Subject: Remove /hello page It not used anymore --- app.js | 2 -- 1 file changed, 2 deletions(-) (limited to 'app.js') diff --git a/app.js b/app.js index 4461152..934429d 100644 --- a/app.js +++ b/app.js @@ -8,7 +8,6 @@ const compression = require('compression') const routes = require('./routes/index') const meetingpointProxy = require('./routes/meetingpointProxy') const manifest = require('./routes/manifest') -const hello = require('./routes/hello') const app = express() @@ -28,7 +27,6 @@ app.use(express.static(path.join(__dirname, 'public'))) app.use('/', routes) app.use('/meetingpointProxy', meetingpointProxy) -app.use('/hello', hello) // catch 404 and forward to error handler app.use(function (req, res, next) { -- cgit v1.1