From 73914a1bdd12aa5ed669a004f422ab9ca643435e Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Tue, 17 Jan 2023 19:30:00 +0100 Subject: [PATCH] revert local filepath --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index a679811..71f61ba 100644 --- a/index.js +++ b/index.js @@ -6,7 +6,7 @@ const crypto = require('crypto'); const express = require('express'); const app = express(); -const clientPath = __dirname+'/../../Websites/TerminalHomepage'; +const clientPath = __dirname+'/../html'; console.log('Serving static from ' + clientPath); app.use(express.json()); app.use(express.static(clientPath));