mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-17 02:48:19 -07:00
bbd1a4aa28
Apprently it got the axe when moving to Gulp. Oops.
14 lines
284 B
JavaScript
14 lines
284 B
JavaScript
const postcssPresetEnv = require('postcss-preset-env');
|
|
const autoprefixer = require('autoprefixer');
|
|
const cssnano = require('cssnano');
|
|
|
|
const config = () => ({
|
|
plugins: [
|
|
postcssPresetEnv(),
|
|
autoprefixer(),
|
|
cssnano()
|
|
]
|
|
});
|
|
|
|
module.exports = config;
|