mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 10:58:20 -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
|