mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-15 09:58:18 -07: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 }
|
||
|
]
|
||
|
};
|