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

12 lines
291 B
JavaScript
Raw Normal View History

2023-05-02 19:36:46 +08:00
module.exports = {
2025-04-22 19:09:25 +08:00
findBundle(i, options) {
2024-11-16 01:54:46 +08:00
return ["style2_css.bundle0.js", "bundle0.js"];
},
2023-05-02 19:36:46 +08:00
moduleScope(scope) {
const link = scope.window.document.createElement("link");
link.rel = "stylesheet";
link.href = "bundle0.css";
scope.window.document.head.appendChild(link);
}
};