mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			21 lines
		
	
	
		
			393 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			393 B
		
	
	
	
		
			JavaScript
		
	
	
	
module.exports = {
 | 
						|
	// mode: "development || "production",
 | 
						|
	entry: {
 | 
						|
		pageA: "./pageA",
 | 
						|
		pageB: "./pageB"
 | 
						|
	},
 | 
						|
	optimization: {
 | 
						|
		splitChunks: {
 | 
						|
			cacheGroups: {
 | 
						|
				commons: {
 | 
						|
					name: "commons",
 | 
						|
					chunks: "initial",
 | 
						|
					minChunks: 2,
 | 
						|
					minSize: 0
 | 
						|
				}
 | 
						|
			}
 | 
						|
		},
 | 
						|
		chunkIds: "deterministic" // To keep filename consistent between different modes (for example building only)
 | 
						|
	}
 | 
						|
};
 |