-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdevServer.js
More file actions
30 lines (26 loc) · 771 Bytes
/
Copy pathdevServer.js
File metadata and controls
30 lines (26 loc) · 771 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
const path = require('path');
const webpack = require('webpack');
const webpackDevMiddleware = require('webpack-dev-middleware');
const config = require('./webpack.develop.config');
const Express = require('express');
const app = new Express();
const port = 3000;
const compiler = webpack(config);
app.use(webpackDevMiddleware(compiler, {
noInfo: true,
publicPath: config.output.publicPath,
}));
app.get('/', (req, res) => {
res.sendFile(path.join(__dirname, 'example/index.html'));
});
app.listen(port, error => {
/* eslint-disable no-console */
if (error) {
console.error(error);
} else {
console.info(
'🌎 Listening on port %s. Open up http://localhost:%s/ in your browser.',
port, port);
}
/* eslint-enable no-console */
});