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

12 lines
199 B
JavaScript
Raw Normal View History

2020-02-28 14:36:42 +01:00
const postcssPresetEnv = require('postcss-preset-env')
const cssnano = require('cssnano');
const config = () => ({
plugins: [
postcssPresetEnv(),
cssnano()
]
})
2020-03-09 22:55:47 +01:00
module.exports = config