18 lines
679 B
Python
18 lines
679 B
Python
const compression = require('compression');
|
|
const express = require('express');
|
|
const bodyParser = require('body-parser');
|
|
const path = require('path');
|
|
const app = express();
|
|
app.use(compression());
|
|
app.disable('x-powered-by');
|
|
app.use(express.static(path.join(__dirname, 'build')));
|
|
// need to declare a "catch all" route on your express server
|
|
// that captures all page requests and directs them to the client
|
|
// the react-router do the route part
|
|
app.get('*', function(req, res) {
|
|
res.sendFile(path.join(__dirname, 'build', 'index.html'));
|
|
});
|
|
app.listen(process.env.PORT || 5000, function() {
|
|
console.log(`Frontend start on http://localhost:5000`);
|
|
});
|