1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/postcss.config.js
2020-03-13 09:26:00 +01:00

11 lines
No EOL
198 B
JavaScript

const postcssPresetEnv = require('postcss-preset-env')
const cssnano = require('cssnano');
const config = () => ({
plugins: [
postcssPresetEnv(),
cssnano()
]
})
module.exports = config