forked from swagger-api/swagger-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack-hot-dev-server.config.js
52 lines (45 loc) · 1008 Bytes
/
webpack-hot-dev-server.config.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
var path = require("path")
var webpack = require('webpack')
module.exports = require("./make-webpack-config.js")({
_special: {
minimize: false,
sourcemaps: true,
separateStylesheets: false,
loaders: {
"worker.js": ["worker-loader?inline=true&name=[name].js", "babel"]
}
},
plugins: [
new webpack.optimize.CommonsChunkPlugin({ name: 'commons' }),
],
entry: {
"swagger-editor-bundle": [
"./src/polyfills.js",
'./src/index.js'
],
'swagger-editor-standalone-preset': [
"./src/polyfills.js",
'./src/standalone/index.js'
],
'commons': ['react']
},
output: {
pathinfo: true,
debug: true,
filename: '[name].js',
library: "[name]",
libraryTarget: "umd",
chunkFilename: "[id].js"
},
devtool: "eval-source-map",
devServer: {
port: 3200,
contentBase: path.join(__dirname, "dev-helpers"),
publicPath: "/",
noInfo: true,
hot: true,
stats: {
colors: true
},
}
})