mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
	
	
		
			23 lines
		
	
	
		
			299 B
		
	
	
	
		
			JavaScript
		
	
	
	
		
		
			
		
	
	
			23 lines
		
	
	
		
			299 B
		
	
	
	
		
			JavaScript
		
	
	
	
|  | "use strict"; | ||
|  | 
 | ||
|  | // no cache names
 | ||
|  | 
 | ||
|  | /** @type {import("../../../../").Configuration} */ | ||
|  | module.exports = [ | ||
|  | 	{ | ||
|  | 		mode: "production", | ||
|  | 		entry: "./index", | ||
|  | 		cache: { | ||
|  | 			type: "filesystem" | ||
|  | 		} | ||
|  | 	}, | ||
|  | 	{ | ||
|  | 		mode: "production", | ||
|  | 		entry: "./index", | ||
|  | 		cache: { | ||
|  | 			type: "filesystem", | ||
|  | 			name: "default" | ||
|  | 		} | ||
|  | 	} | ||
|  | ]; |