PostCSS postprocessor for moving big base64 inlines to separate css file.
DataSplit supports two options:
minLengthminimum size of inlined block that will be moved to separate file. Defaut is 0 (all inlines are moved);dataRegexp– regular expression to find inlines. Default is/url\(('|")?data/g
var DataSplit = require('data-split') splitter = new DataSplit(); var result = splitter.process(cssString); // New css with all inlines console.log(result.inlines.toString()); // Your css without inlines console.log(result.target.toString());