/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
examples/html-module-nomodule/src/app.js
6 строк
300 B
Alexander Akait
feat: native HTML output features (favicon attributes, manifest, CSP, tag inject/transform hooks) (#21487)
23 июл 2026, 22:02
Не верифицирован
23 июл 2026, 22:02
7121604
Код
Авторство
О чём код?
// Modern source. In a real project the legacy build runs this through a // transpiling loader (babel/swc) with old `targets`; the modern build ships it // as-is over `<script type="module">`. const heading = document.querySelector("h1"); heading?.classList.add("ready"); console.log("app running");