/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/target/universal-css/test.config.js
15 строк
337 B
hai-x
test: allow multiple bundle execution for universal targets (#20642)
16 мар 2026, 18:37
Не верифицирован
16 мар 2026, 18:37
47d4b55
Код
Авторство
О чём код?
"use strict"; module.exports = { moduleScope(scope, options, target) { if (target === "web") { const link = scope.window.document.createElement("link"); link.rel = "stylesheet"; link.href = "main.css"; scope.window.document.head.appendChild(link); } }, findBundle() { return ["./separate.mjs", "./main.mjs"]; } };