forked from linode/linode-api-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
devServer.js
37 lines (29 loc) · 822 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
35
36
37
var path = require('path');
var process = require('process');
var express = require('express');
var webpack = require('webpack');
var config = require('./webpack.config.dev');
var mime = require('mime');
var fs = require('fs');
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) {
if (req.url === "/static/common.js") {
res.send('');
} else {
res.sendFile(path.join(__dirname, 'index.html'));
}
});
var port = process.env.DOCS_PORT || 5000;
app.listen(port, 'localhost', function(err) {
if (err) {
console.log(err);
return;
}
console.log('Listening at http://localhost:' + port);
});