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:46:11 +01:00

11 lines
201 B
JavaScript

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