/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/html/modulepreload-esm/page.html
17 строк
495 B
Raj Aryan
test(html): add missing edge-case and webpackIgnore tests for html-loader parity (#21078)
03 июн 2026, 20:16
Не верифицирован
03 июн 2026, 20:16
4e39088
Код
Авторство
О чём код?
<!DOCTYPE html> <html> <head> <title>Test</title> <link rel="modulepreload" href="./preload.js"> <link rel="modulepreload " href="./preload-other.js"> <link rel="modulepreload" href="data:text/javascript,export%20default%201"> <!-- webpackIgnore: true --> <link rel="modulepreload" href="./ignored-preload.js"> </head> <body> <h1>Hello</h1> <script type="module" src="./entry.js"></script> <!-- webpackIgnore: true --> <script type="module" src="./ignored-entry.js"></script> </body> </html>