webpack/test/configCases/css/basic/test.config.js

9 lines
211 B
JavaScript

module.exports = {
moduleScope(scope) {
const link = scope.window.document.createElement("link");
link.rel = "stylesheet";
link.href = "bundle0.css";
scope.window.document.head.appendChild(link);
}
};