From b3e8bc4889bb9954827ce54682f5fd289d319513 Mon Sep 17 00:00:00 2001 From: Thomas Date: Fri, 29 Jan 2021 14:08:33 +0100 Subject: [PATCH] Fixed client serving --- server/src/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/app.ts b/server/src/app.ts index d103a16..f489d89 100644 --- a/server/src/app.ts +++ b/server/src/app.ts @@ -7,7 +7,7 @@ const app = express(); const WebSocketServer = Server; const port = process.env.PORT || 3000; -app.use(express.static('../distClient')); +app.use(express.static('distClient/')); const server = app.listen(port, () => { console.log(`Tron.io running on port ${port}`);