/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/html/minimize-css-options/page.html
17 строк
457 B
Alexander Akait
feat: configure or exclude each asset type's minifier via optimization.minimize (#21663)
10 авг 2026, 18:37
Не верифицирован
10 авг 2026, 18:37
5a8fa6c
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="en"> <head> <style> /* the same rewrite a `.css` asset gets: sixteen pixels are one pica */ .t01 { width: 16px } /* ten millimeters are one centimeter */ .t02 { width: 10mm } /* a length no other unit spells shorter keeps its own */ .t03 { width: 17px } </style> </head> <body> <p style="width: 16px">a style attribute is handed the same option</p> <p style="width: 17px">...and declines the same cases</p> </body> </html>