Skip to content

Instantly share code, notes, and snippets.

@hellotunmbi
Last active August 10, 2023 11:25
Show Gist options
  • Save hellotunmbi/a52a264c7cd05e08e8a6a648d89946e5 to your computer and use it in GitHub Desktop.
Save hellotunmbi/a52a264c7cd05e08e8a6a648d89946e5 to your computer and use it in GitHub Desktop.
//Install express server
const express = require('express');
const path = require('path');
const app = express();
// Serve only the static files form the dist directory
app.use(express.static(__dirname + '/dist/<name-of-app>'));
app.get('/*', function(req,res) {
res.sendFile(path.join(__dirname+'/dist/<name-of-app>/index.html'));
});
// Start the app by listening on the default Heroku port
app.listen(process.env.PORT || 8080);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment