mirror of https://github.com/webpack/webpack.git
12 lines
291 B
JavaScript
12 lines
291 B
JavaScript
module.exports = {
|
|
findBundle(i, options) {
|
|
return ["style2_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);
|
|
}
|
|
};
|