mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2025-02-22 09:58:55 +00:00
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 }
|
|
]
|
|
};
|