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