mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-15 09:58:18 -07:00
2c31a55b08
Turn off `mergeLonghand` because it combines `padding-*`, breaking fallback styles.
11 lines
331 B
JavaScript
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 }
|
|
]
|
|
};
|