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