mirror of https://github.com/webpack/webpack.git
21 lines
339 B
JavaScript
21 lines
339 B
JavaScript
|
const { HotModuleReplacementPlugin } = require("../../");
|
||
|
|
||
|
module.exports = {
|
||
|
mode: "development",
|
||
|
entry: {
|
||
|
main: "./example.js"
|
||
|
},
|
||
|
cache: {
|
||
|
type: "filesystem",
|
||
|
idleTimeout: 5000
|
||
|
},
|
||
|
experiments: {
|
||
|
lazyCompilation: true
|
||
|
},
|
||
|
devServer: {
|
||
|
hot: true,
|
||
|
publicPath: "/dist/"
|
||
|
},
|
||
|
plugins: [new HotModuleReplacementPlugin()]
|
||
|
};
|