forked from g0v/itaigi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
devServer.js
34 lines (27 loc) · 862 Bytes
/
devServer.js
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
32
33
34
var path = require('path');
var express = require('express');
var webpack = require('webpack');
var config = require('./webpack.config.dev');
if ((parseInt(process.versions.node[0]) == 0) && (parseInt(process.versions.node.slice(2)) <= 12)) {
console.log(
'Node.js version ' + process.versions.node + ' too old; please upgrade to Node.js 4.0 or later.'
);
process.exit();
}
var app = express();
var compiler = webpack(config);
app.use(require('webpack-dev-middleware')(compiler, {
noInfo: true,
publicPath: config.output.publicPath,
}));
app.use(require('webpack-hot-middleware')(compiler));
app.get('*', function (req, res) {
res.sendFile(path.join(__dirname, 'html/index.html'));
});
app.listen(3000, '0.0.0.0', function (err) {
if (err) {
console.log(err);
return;
}
console.log('Listening at http://localhost:3000');
});