mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			12 lines
		
	
	
		
			301 B
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			301 B
		
	
	
	
		
			JavaScript
		
	
	
	
| module.exports = {
 | |
| 	findBundle(i, options) {
 | |
| 		return ["reexport_modules_css.bundle0.js", "bundle0.js"];
 | |
| 	},
 | |
| 	moduleScope(scope) {
 | |
| 		const link = scope.window.document.createElement("link");
 | |
| 		link.rel = "stylesheet";
 | |
| 		link.href = "bundle0.css";
 | |
| 		scope.window.document.head.appendChild(link);
 | |
| 	}
 | |
| };
 |