index.js 351 Bytes
const express = require('express');
const path = require('path');
const app = express();

app.use(express.static(path.join(__dirname, 'dist/hurr-ui')));

app.get('/*', function (req, res) {
  res.sendFile(path.join(__dirname, 'dist/hurr-ui', 'index.html'));
});

app.listen(8080, () => {
  console.log('Servidor Angular rodando na porta 8080');
});