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}`);