From 4ccc0265d2110808cd7bf5fe64a2991ac0f17dbe Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Fri, 19 Jul 2024 11:38:08 +0000 Subject: [PATCH] fix default path to frontend --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 92c562a..647279a 100644 --- a/index.js +++ b/index.js @@ -11,7 +11,7 @@ const express = require('express'); // Global server setup const app = express(); -const clientPath = __dirname+'/../html'; +const clientPath = __dirname+'/../TerminalHomepage'; console.log('Serving static from ' + clientPath); app.use(express.json()); app.use(express.static(clientPath));