forked from Lobos/react-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevServer.js
43 lines (32 loc) · 1.05 KB
/
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
38
39
40
41
42
43
'use strict';
var path = require('path');
var express = require('express');
var webpack = require('webpack');
var config = require("./webpack.config.dev.js");
var app = express();
var compiler = webpack(config);
app.use(require('webpack-dev-middleware')(compiler, {
noInfo: true,
publicPath: '/'
}));
app.use(require('webpack-hot-middleware')(compiler));
app.use('/dist', express.static('docs/dist'));
app.use('/images', express.static('docs/src/images'));
app.use('/json', express.static('docs/src/json'));
app.use('/lib', express.static('docs/lib'));
app.get('/', function(req, res) {
res.sendFile(path.join(__dirname, 'docs/src/index.html'));
});
app.get('/form.html', function(req, res) {
res.sendFile(path.join(__dirname, 'standalone/form/index.html'));
});
app.get('/formBuilder.html', function(req, res) {
res.sendFile(path.join(__dirname, 'standalone/formBuilder/formBuilder.html'));
});
app.listen(3000, 'localhost', function(err) {
if (err) {
console.log(err);
return;
}
console.log('Listening at http://localhost:3000');
});