-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsrcServer.js
More file actions
37 lines (29 loc) · 900 Bytes
/
srcServer.js
File metadata and controls
37 lines (29 loc) · 900 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
32
33
34
35
36
37
require('dotenv').config()
import express from 'express';
import webpack from 'webpack';
import path from 'path';
import config from './webpack.config.dev'
const port = process.env.PORT || 3000;
const app = express();
app.set('port', port);
if (process.env.NODE_ENV == 'production') {
app.use(express.static(path.join(__dirname, 'dist')))
app.get('*', function (req, res) {
res.sendFile(path.join(__dirname, 'dist', 'index.html'))
});
} else {
const 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, 'src', 'index.html'));
});
}
app.listen(port, function (err) {
if (err) {
console.log(err);
}
});