app-server.js 225 B

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