mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			33 lines
		
	
	
		
			480 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			480 B
		
	
	
	
		
			JavaScript
		
	
	
	
"use strict";
 | 
						|
 | 
						|
/** @type {import("../../../").Configuration} */
 | 
						|
module.exports = {
 | 
						|
	mode: "production",
 | 
						|
	entry: "./index",
 | 
						|
	stats: {
 | 
						|
		assets: true,
 | 
						|
		chunkGroups: true,
 | 
						|
		chunkGroupAuxiliary: true,
 | 
						|
		chunks: true,
 | 
						|
		chunkModules: true,
 | 
						|
		dependentModules: true,
 | 
						|
		modules: true,
 | 
						|
		moduleAssets: true
 | 
						|
	},
 | 
						|
	module: {
 | 
						|
		rules: [
 | 
						|
			{
 | 
						|
				test: /\.png$/,
 | 
						|
				use: [
 | 
						|
					{
 | 
						|
						loader: "file-loader",
 | 
						|
						options: {
 | 
						|
							name: "[name].[ext]"
 | 
						|
						}
 | 
						|
					}
 | 
						|
				]
 | 
						|
			}
 | 
						|
		]
 | 
						|
	}
 | 
						|
};
 |