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