-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevServer.js
51 lines (45 loc) · 1.2 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
44
45
46
47
48
49
50
51
/* eslint import/no-extraneous-dependencies: 0, no-console: 0 */
const path = require('path');
const webpack = require('webpack');
const WebpackDevServer = require('webpack-dev-server');
const config = require('./webpack.config');
const port = 3000;
const compiler = webpack(Object.assign({}, config, {
// devtool: 'cheap-source-map',
entry: [
'webpack-dev-server/client',
'webpack/hot/dev-server',
...config.entry.app,
],
// output: {
// path: path.resolve(__dirname, 'public'),
// filename: 'example_app.js',
// publicPath: '/',
// },
plugins: [
...config.plugins,
new webpack.HotModuleReplacementPlugin(),
new webpack.NoEmitOnErrorsPlugin(),
],
}));
const devServer = new WebpackDevServer(compiler, {
hot: true,
disableHostCheck: true,
contentBase: 'public/',
publicPath: config.output.publicPath,
quiet: false,
stats: { colors: true },
historyApiFallback: true,
watchOptions: {
ignored: /node_modules/,
},
});
devServer.listen(port, (err) => {
if (err) {
console.error(err);
return;
}
console.log('//***************************//');
console.log('Server ready on port %d', port);
console.log('//***************************//');
});