0
0
mirror of https://github.com/jellyfin/jellyfin-web.git synced 2025-02-22 09:58:55 +00:00
jellyfin-web/cssnano.config.js
Dmitry Lyzo 2c31a55b08 Fix CSS fallback
Turn off `mergeLonghand` because it combines `padding-*`,
breaking fallback styles.
2022-10-08 23:45:54 +03:00

11 lines
331 B
JavaScript

module.exports = {
preset: [
'default',
// Turn off `mergeLonghand` because it combines `padding-*` and `margin-*`,
// breaking fallback styles.
// https://github.com/cssnano/cssnano/issues/1163
// https://github.com/cssnano/cssnano/issues/1192
{ mergeLonghand: false }
]
};