mirror of
https://github.com/KevinMidboe/seasonedRequest.git
synced 2025-10-29 18:00:13 +00:00
Node server configured
This commit is contained in:
23
server.js
Normal file
23
server.js
Normal file
@@ -0,0 +1,23 @@
|
||||
var express = require('express');
|
||||
var path = require('path');
|
||||
var history = require('connect-history-api-fallback');
|
||||
|
||||
app = express();
|
||||
|
||||
app.use('/dist', express.static(path.join(__dirname + "/dist")));
|
||||
app.use('/favicons', express.static(path.join(__dirname + "/favicons")));
|
||||
app.use(history({
|
||||
index: '/'
|
||||
}));
|
||||
|
||||
|
||||
var port = process.env.PORT || 5000;
|
||||
|
||||
app.get('/', function(req, res) {
|
||||
res.sendFile(path.join(__dirname + '/index.html'));
|
||||
});
|
||||
|
||||
|
||||
|
||||
app.listen(port);
|
||||
console.log('server started '+ port);
|
||||
Reference in New Issue
Block a user