mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			14 lines
		
	
	
		
			328 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			328 B
		
	
	
	
		
			JavaScript
		
	
	
	
module.exports = {
 | 
						|
	entry: {
 | 
						|
		app: { import: "./app.js", dependOn: ["react-vendors"] },
 | 
						|
		"react-vendors": ["react", "react-dom", "prop-types"]
 | 
						|
	},
 | 
						|
	optimization: {
 | 
						|
		chunkIds: "named" // To keep filename consistent between different modes (for example building only)
 | 
						|
	},
 | 
						|
	stats: {
 | 
						|
		chunks: true,
 | 
						|
		chunkRelations: true
 | 
						|
	}
 | 
						|
};
 |