mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			27 lines
		
	
	
		
			388 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			388 B
		
	
	
	
		
			JavaScript
		
	
	
	
| module.exports = [
 | |
| 	{
 | |
| 		entry: "./example.js",
 | |
| 		output: {
 | |
| 			pathinfo: true,
 | |
| 			filename: "output.js"
 | |
| 		},
 | |
| 		optimization: {
 | |
| 			moduleIds: "size",
 | |
| 			usedExports: true,
 | |
| 			mangleExports: true
 | |
| 		}
 | |
| 	},
 | |
| 	{
 | |
| 		entry: "./example.js",
 | |
| 		output: {
 | |
| 			pathinfo: true,
 | |
| 			filename: "without.js"
 | |
| 		},
 | |
| 		optimization: {
 | |
| 			moduleIds: "size",
 | |
| 			usedExports: false,
 | |
| 			mangleExports: false
 | |
| 		}
 | |
| 	}
 | |
| ];
 |