-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebpack.dev.js
44 lines (43 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
const merge = require('webpack-merge');
const common = require('./webpack.common.js');
const path = require('path');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
module.exports = merge(common, {
mode: 'development',
devtool: 'inline-source-map',
plugins: [
new BundleAnalyzerPlugin(),
],
devServer: {
contentBase: path.join(__dirname, 'public/assets'),
host: '127.0.0.1',
port: 8383,
open: true,
historyApiFallback: true,
hot: true,
proxy: {
'/s3': {
target: 'http://s3.zenko.local',
pathRewrite: {'^/s3' : ''},
bypass: function(req) {
req.headers.proxypath = req.path;
req.headers.proxyhost = '127.0.0.1:8383';
},
changeOrigin: true,
},
'/iam': {
target: 'http://iam.zenko.local',
bypass: function(req) {
req.headers.proxypath = req.path;
req.headers.proxyhost = '127.0.0.1:8383';
},
changeOrigin: true,
},
'/sts': {
target: 'http://sts.zenko.local',
pathRewrite: {'^/sts' : ''},
changeOrigin: true,
},
},
},
});