| 
									
										
										
										
											2025-07-02 20:10:54 +08:00
										 |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-31 09:56:53 +08:00
										 |  |  | const path = require("path"); | 
					
						
							|  |  |  | const webpack = require("../../"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-17 17:06:35 +08:00
										 |  |  | module.exports = { | 
					
						
							| 
									
										
										
										
											2023-03-12 10:27:40 +08:00
										 |  |  | 	// mode: "development" || "production",
 | 
					
						
							| 
									
										
										
										
											2015-05-17 17:06:35 +08:00
										 |  |  | 	plugins: [ | 
					
						
							| 
									
										
										
										
											2015-05-18 05:29:40 +08:00
										 |  |  | 		new webpack.DllReferencePlugin({ | 
					
						
							| 
									
										
										
										
											2015-05-17 17:06:35 +08:00
										 |  |  | 			context: path.join(__dirname, "..", "dll"), | 
					
						
							| 
									
										
										
										
											2024-01-13 21:28:53 +08:00
										 |  |  | 			manifest: require("../dll/dist/alpha-manifest.json") | 
					
						
							| 
									
										
										
										
											2015-05-17 17:06:35 +08:00
										 |  |  | 		}), | 
					
						
							| 
									
										
										
										
											2015-05-18 05:29:40 +08:00
										 |  |  | 		new webpack.DllReferencePlugin({ | 
					
						
							| 
									
										
										
										
											2015-05-17 17:06:35 +08:00
										 |  |  | 			scope: "beta", | 
					
						
							| 
									
										
										
										
											2024-01-13 21:28:53 +08:00
										 |  |  | 			manifest: require("../dll/dist/beta-manifest.json"), | 
					
						
							| 
									
										
										
										
											2016-09-07 20:57:53 +08:00
										 |  |  | 			extensions: [".js", ".jsx"] | 
					
						
							| 
									
										
										
										
											2015-05-17 17:06:35 +08:00
										 |  |  | 		}) | 
					
						
							| 
									
										
										
										
											2015-05-18 05:03:21 +08:00
										 |  |  | 	] | 
					
						
							| 
									
										
										
										
											2015-05-17 17:06:35 +08:00
										 |  |  | }; |