const express = require('express'); const path = require('path'); const app = express(); app.use(express.static(path.join(__dirname, '../../build'))); // Start the server const PORT = process.env.PORT || 5000; app.listen(PORT, () => { console.log(`App listening on port ${PORT}`); });