mirror of https://github.com/webpack/webpack.git
14 lines
296 B
JavaScript
14 lines
296 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
findBundle() {
|
|
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);
|
|
}
|
|
};
|