parent
30c963a5f0
commit
61a1c93f0f
89 changed files with 15859 additions and 2 deletions
17
client/webpack.config.dev.js
Normal file
17
client/webpack.config.dev.js
Normal file
|
@ -0,0 +1,17 @@
|
|||
const merge = require("webpack-merge");
|
||||
const common = require("./webpack.config.common.js");
|
||||
|
||||
module.exports = merge(common, {
|
||||
entry: {
|
||||
api_test: "./libs/test/api_test"
|
||||
},
|
||||
devtool: "inline-source-map",
|
||||
devServer: {
|
||||
contentBase: "./dist"
|
||||
},
|
||||
watchOptions: {
|
||||
aggregateTimeout: 1000,
|
||||
poll: 1000,
|
||||
ignored: /node_modules/
|
||||
}
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue