12 lines
310 B
JavaScript
12 lines
310 B
JavaScript
const express = require('express');
|
|
const path = require('path');
|
|
|
|
const app = express();
|
|
app.use(express.static(path.join(__dirname, 'build')));
|
|
app.use((req, res) => {
|
|
res.sendFile(path.join(__dirname, 'build', 'index.html'));
|
|
});
|
|
|
|
app.listen(3000, () => {
|
|
console.log('React build serving on 3000');
|
|
}); |