Browse Source

Fixed linux-non-docker index.html issue

Owen Diffey 8 years ago
parent
commit
9573a098f2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      backend/index.js

+ 1 - 1
backend/index.js

@@ -204,7 +204,7 @@ async.waterfall([
 			const express = require('express');
 			const app = express();
 			app.listen(config.get("frontendPort"));
-			const rootDir = __dirname.substr(0, __dirname.lastIndexOf("backend")) + "frontend\\build\\";
+			const rootDir = __dirname.substr(0, __dirname.lastIndexOf("backend")) + "frontend/build/";
 
 			app.get("/*", (req, res) => {
 				const path = req.path;