mirror of
https://github.com/KevinMidboe/seasonedRequest.git
synced 2025-10-29 01:40:14 +00:00
22 lines
534 B
JavaScript
22 lines
534 B
JavaScript
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('/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);
|