summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app.js1
-rw-r--r--config.js3
2 files changed, 1 insertions, 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';