0
0
mirror of https://github.com/jellyfin/jellyfin-web.git synced 2025-06-01 07:33:04 +00:00
Files
jellyfin-web/cssnano.config.js

11 lines
331 B
JavaScript
Raw Normal View History

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 }
]
};