mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-16 18:38:25 -07:00
12 lines
201 B
JavaScript
12 lines
201 B
JavaScript
const postcssPresetEnv = require('postcss-preset-env');
|
|
const cssnano = require('cssnano');
|
|
|
|
const config = () => ({
|
|
plugins: [
|
|
postcssPresetEnv(),
|
|
cssnano()
|
|
]
|
|
});
|
|
|
|
module.exports = config
|