From 2f9ecce5b9a8cf2b114f38a38834c2cbd29dadb7 Mon Sep 17 00:00:00 2001 From: dennisschagt Date: Tue, 12 May 2015 09:26:36 +0200 Subject: Serve static app and node_modules separately --- app.js | 1 + config.js | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/app.js b/app.js index bab6fe0..b35347b 100644 --- a/app.js +++ b/app.js @@ -44,6 +44,7 @@ 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 5c5c394..c53fcaf 100644 --- a/config.js +++ b/config.js @@ -21,4 +21,5 @@ exports.session_secret = 'Very safe. Much secret. Wow.'; /** * Path to the static files of the frontend. */ -exports.frontend_path = '../RVS-frontend'; +exports.frontend_path = '../RVS-frontend/app'; +exports.node_modules_path = '../RVS-frontend/node_modules'; -- cgit v1.2.1