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