mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-23 22:26:40 +08:00
19 lines
426 B
JavaScript
19 lines
426 B
JavaScript
import { purgeCSSPlugin } from '@fullhuman/postcss-purgecss'
|
|
|
|
const config = (ctx) => ({
|
|
plugins: {
|
|
'postcss-preset-env': {},
|
|
...(ctx.env === 'production' ?
|
|
purgeCSSPlugin({
|
|
content: [
|
|
'./src/**/*.html',
|
|
'./src/**/*.jsx',
|
|
'./src/**/*.js',
|
|
],
|
|
defaultExtractor: content => content.match(/[\w-/:]+(?<!:)/g) || []
|
|
}) : {})
|
|
},
|
|
});
|
|
|
|
export default config;
|