forked from Kitware/vtk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.dev.js
54 lines (49 loc) · 1.36 KB
/
webpack.dev.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
// node modules
const merge = require('webpack-merge');
const path = require('path');
const webpack = require('webpack');
// webpack plugins
const Dashboard = require('webpack-dashboard');
const DashboardPlugin = require('webpack-dashboard/plugin');
const dashboard = new Dashboard();
// config files
const common = require('./webpack.common.js');
const settings = require('./webpack.settings.js');
// Configure the webpack-dev-server
function configureDevServer() {
return {
contentBase: path.resolve(__dirname, settings.paths.dist.base),
public: settings.devServerConfig.public(),
host: settings.devServerConfig.host(),
port: settings.devServerConfig.port(),
quiet: true,
hot: true,
hotOnly: true,
overlay: true,
stats: 'errors-only',
headers: {
'Access-Control-Allow-Origin': '*',
},
};
}
// Development module exports
module.exports = [
merge(common.baseConfig, {
mode: 'development',
devtool: 'inline-source-map',
devServer: configureDevServer(),
plugins: [
new webpack.HotModuleReplacementPlugin(),
new DashboardPlugin(dashboard.setData),
],
}),
merge(common.liteConfig, {
mode: 'development',
devtool: 'inline-source-map',
devServer: configureDevServer(),
plugins: [
new webpack.HotModuleReplacementPlugin(),
new DashboardPlugin(dashboard.setData),
],
}),
];