forked from vkammerer/react-redux-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver-dev.js
More file actions
31 lines (25 loc) · 661 Bytes
/
Copy pathserver-dev.js
File metadata and controls
31 lines (25 loc) · 661 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import path from 'path';
import express from 'express';
import webpack from 'webpack';
import config from './webpack.config.dev';
const app = express();
const compiler = webpack(config);
app.use(require('webpack-dev-middleware')(compiler, {
stats: {
chunks: false,
colors: true
},
publicPath: config.output.publicPath
}));
app.use(require('webpack-hot-middleware')(compiler));
app.use(express.static('static'));
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname, 'static', 'index.html'));
});
app.listen(8080, 'localhost', (err) => {
if (err) {
console.log(err);
return;
}
console.log('Listening at http://localhost:8080');
});