/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
examples/html-module-nomodule/src/index.html
13 строк
359 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
Код
Авторство
О чём код?
<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <title>module / nomodule</title> </head> <body> <h1>Differential serving</h1> <!-- Modern browsers load this as an ES module; the classic build is injected as a `<script nomodule>` fallback by the plugin below. --> <script type="module" src="./app.js"></script> </body> </html>