From b889bd0cd26880ddbe12f0f83b2b4819d91cb0a7 Mon Sep 17 00:00:00 2001 From: dennisschagt Date: Tue, 12 May 2015 10:48:48 +0200 Subject: Revert "Serve static app and node_modules separately" This reverts commit 2f9ecce5b9a8cf2b114f38a38834c2cbd29dadb7. --- app.js | 1 - 1 file changed, 1 deletion(-) (limited to 'app.js') diff --git a/app.js b/app.js index b35347b..bab6fe0 100644 --- a/app.js +++ b/app.js @@ -44,7 +44,6 @@ app.use('/api/v1', router); // set up serving of static frontend files app.use('/', express.static(config.frontend_path)); -app.use('/node_modules', express.static(config.node_modules_path)); var server = app.listen(config.port, function() { -- cgit v1.2.1