forked from influxdata/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.dev.ts
53 lines (52 loc) · 1.31 KB
/
webpack.dev.ts
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
export {}
const path = require('path')
const merge = require('webpack-merge')
const common = require('./webpack.common.ts')
const PORT = parseInt(process.env.PORT, 10) || 8080
const PUBLIC = process.env.PUBLIC || undefined
const {
BASE_PATH,
} = require('./src/utils/env')
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const webpack = require('webpack')
module.exports = merge(common, {
mode: 'development',
devtool: 'cheap-inline-source-map',
output: {
filename: '[name].js',
},
watchOptions: {
aggregateTimeout: 300,
poll: 1000
},
devServer: {
hot: true,
historyApiFallback: {
index: `${BASE_PATH}/index.html`
},
compress: true,
proxy: {
'/api/v2': 'http://localhost:9999',
'/debug/flush': 'http://localhost:9999',
'/oauth': 'http://localhost:9999',
},
disableHostCheck: true,
host: '0.0.0.0',
port: PORT,
public: PUBLIC,
publicPath: PUBLIC,
sockPath: `${BASE_PATH}hmr`
},
plugins: [
new webpack.DllReferencePlugin({
context: path.join(__dirname, 'build'),
manifest: require('./build/vendor-manifest.json'),
}),
new BundleAnalyzerPlugin({
analyzerMode: 'server',
analyzerHost: '0.0.0.0',
analyzerPort: '9998',
openAnalyzer: false,
}),
],
})