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 - config.js | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) 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() { diff --git a/config.js b/config.js index c53fcaf..5c5c394 100644 --- a/config.js +++ b/config.js @@ -21,5 +21,4 @@ exports.session_secret = 'Very safe. Much secret. Wow.'; /** * Path to the static files of the frontend. */ -exports.frontend_path = '../RVS-frontend/app'; -exports.node_modules_path = '../RVS-frontend/node_modules'; +exports.frontend_path = '../RVS-frontend'; -- cgit v1.2.1