app.js 234 B

123456789
  1. const express = require('express');
  2. const app = express();
  3. const port = 8081;
  4. app.use('/marketing-html5', express.static('src/main/webapp/'));
  5. app.listen(port, () => {
  6. console.log(`marketing-html5 listening on port ${port}`);
  7. });