1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Add Autoprefixer

Apprently it got the axe when moving to Gulp. Oops.
This commit is contained in:
MrTimscampi 2020-04-25 14:47:20 +02:00
parent dc74e21363
commit bbd1a4aa28
4 changed files with 37 additions and 17 deletions

View file

@ -1,9 +1,11 @@
const postcssPresetEnv = require('postcss-preset-env');
const autoprefixer = require('autoprefixer');
const cssnano = require('cssnano');
const config = () => ({
plugins: [
postcssPresetEnv(),
autoprefixer(),
cssnano()
]
});