-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
80 lines (71 loc) · 2.02 KB
/
server.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
const express = require('express');
const app = express();
const request = require('request');
app.get('/', function(req, res) {
if (process.env.PRODUCTION) {
res.sendFile(__dirname + '/build/index.html');
} else {
request('http://localhost:9090/build/index.html').pipe(res);
}
});
app.get([
'/index.html',
'/news.html',
'/tariffs.html',
'/guides.html'], function(req, res) {
if (process.env.PRODUCTION) {
res.sendFile(__dirname + '/build' + req.originalUrl);
} else {
request('http://localhost:9090/build' + req.originalUrl).pipe(res);
}
});
// Serve application file depending on environment
app.get([
'/shared.js',
'/unify.js',
'/unify.css',
'/dashboard.js',
'/dashboard.css',
'/resources*',
'/node_modules*',
'/src/unify*'], function(req, res) {
if (process.env.PRODUCTION) {
res.sendFile(__dirname + '/build' + req.originalUrl);
} else {
res.redirect('//localhost:9090/build' + req.originalUrl);
}
});
app.get('*', function(req, res) {
if (process.env.PRODUCTION) {
res.sendFile(__dirname + '/build/dashboard.html');
} else {
request('http://localhost:9090/build/dashboard.html').pipe(res);
}
});
/*************************************************************
*
* Webpack Dev Server
*
* See: http://webpack.github.io/docs/webpack-dev-server.html
*
*************************************************************/
if (!process.env.PRODUCTION) {
const webpack = require('webpack');
const WebpackDevServer = require('webpack-dev-server');
const config = require('./webpack.local.config');
new WebpackDevServer(webpack(config), {
publicPath: config.output.publicPath,
hot: true,
noInfo: true,
historyApiFallback: true,
headers: { 'Access-Control-Allow-Origin': '*' }
}).listen(9090, 'localhost', function(err) {
if (err) {
console.error(err);
}
});
}
const port = process.env.PORT || 8889;
const server = app.listen(port, function() {
console.log('Listening at http://%s:%s', server.address().address, server.address().port);
});