mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Run postcss for webpack bundle
This commit is contained in:
parent
fb83b6b244
commit
6c2ed00a61
8 changed files with 432 additions and 19 deletions
11
postcss.config.js
Normal file
11
postcss.config.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
const postcssPresetEnv = require('postcss-preset-env')
|
||||
const cssnano = require('cssnano');
|
||||
|
||||
const config = () => ({
|
||||
plugins: [
|
||||
postcssPresetEnv(),
|
||||
cssnano()
|
||||
]
|
||||
})
|
||||
|
||||
module.exports = config
|
Loading…
Add table
Add a link
Reference in a new issue