mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			17 lines
		
	
	
		
			474 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			474 B
		
	
	
	
		
			JavaScript
		
	
	
	
| var path = require("path");
 | |
| var webpack = require("../../");
 | |
| module.exports = {
 | |
| 	// mode: "development" || "production",
 | |
| 	plugins: [
 | |
| 		new webpack.DllReferencePlugin({
 | |
| 			context: path.join(__dirname, "..", "dll"),
 | |
| 			manifest: require("../dll/dist/alpha-manifest.json") // eslint-disable-line
 | |
| 		}),
 | |
| 		new webpack.DllReferencePlugin({
 | |
| 			scope: "beta",
 | |
| 			manifest: require("../dll/dist/beta-manifest.json"), // eslint-disable-line
 | |
| 			extensions: [".js", ".jsx"]
 | |
| 		})
 | |
| 	]
 | |
| };
 |