mirror of https://github.com/webpack/webpack.git
11 lines
226 B
JavaScript
11 lines
226 B
JavaScript
|
"use strict";
|
||
|
|
||
|
module.exports = {
|
||
|
moduleScope(scope) {
|
||
|
const link = scope.window.document.createElement("link");
|
||
|
link.rel = "stylesheet";
|
||
|
link.href = "bundle0.css";
|
||
|
scope.window.document.head.appendChild(link);
|
||
|
}
|
||
|
};
|