/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/html/extract-runtime-chunk/page.html
14 строк
478 B
Alexander Akait
feat(html): add `module.generator.html.extract` option (#20979)
19 май 2026, 22:41
Не верифицирован
19 май 2026, 22:41
45a1bab
Код
Авторство
О чём код?
<!DOCTYPE html> <html> <head> <title>Extracted HTML with runtime chunk</title> <script src="./entry.js" nonce="abc" crossorigin="anonymous" integrity="sha384-IGNOREME"></script> </head> <body> <h1>Hello</h1> <!-- A second classic <script src> chains via dependOn to the first. The shared runtime chunk is already loaded by the leader's tag above, so this tag must NOT prepend another runtime <script> for itself. --> <script src="./other.js"></script> </body> </html>