/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/css/runtime-issue/test.config.js
23 строки
570 B
Alexander Akait
chore: resolve "use strict" TODO (#19705)
16 июл 2025, 17:29
Не верифицирован
16 июл 2025, 17:29
d8690f3
Код
Авторство
О чём код?
"use strict"; module.exports = { moduleScope(scope) { const link1 = scope.window.document.createElement("link"); link1.rel = "stylesheet"; link1.href = "asyncChunk_js.css"; scope.window.document.head.appendChild(link1); const link2 = scope.window.document.createElement("link"); link2.rel = "stylesheet"; link2.href = "asyncChunk2_js.css"; scope.window.document.head.appendChild(link2); }, findBundle() { return [ "./common-share_js-img_png.js", "./asyncChunk_js.js", "./main.js", "./secondMain.js", "./asyncChunk2_js.js" ]; } };