webpack/test/configCases/css/basic-web-async/test.config.js

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);
}
};