Express server for serving dist files.
This commit is contained in:
12
server.js
Normal file
12
server.js
Normal file
@@ -0,0 +1,12 @@
|
||||
const express = require('express');
|
||||
const path = require('path');
|
||||
|
||||
const app = express();
|
||||
|
||||
const port = process.env.PORT || 30040;
|
||||
|
||||
app.use(express.static(path.join(__dirname, 'dist')));
|
||||
|
||||
app.listen(port, () => {
|
||||
console.log(`App listening on port ${port}`)
|
||||
});
|
||||
Reference in New Issue
Block a user