/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/css/universal/test.config.js
12 строк
272 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, env) { if (env !== "node") { const link = scope.window.document.createElement("link"); link.rel = "stylesheet"; link.href = "bundle0.css"; scope.window.document.head.appendChild(link); } } };