mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
17 lines
330 B
TypeScript
17 lines
330 B
TypeScript
|
|
import PurifyPlugin from 'purifycss-webpack';
|
||
|
|
|
||
|
|
new PurifyPlugin({
|
||
|
|
styleExtensions: ['.css'],
|
||
|
|
minimize: true,
|
||
|
|
moduleExtensions: ['.js'],
|
||
|
|
paths: [''],
|
||
|
|
verbose: true,
|
||
|
|
purifyOptions: {
|
||
|
|
minify: false,
|
||
|
|
output: '',
|
||
|
|
info: false,
|
||
|
|
rejected: false,
|
||
|
|
whitelist: [''],
|
||
|
|
},
|
||
|
|
});
|