app-server.js 205 B

12345678
  1. const express = require('express');
  2. const app = express();
  3. const port = 1996;
  4. app.use(express.static('dist'));
  5. app.listen(port, () =>
  6. console.log(`Serving 12 Heroes App at http://localhost:${port}`)
  7. );