style-ext-html-webpack-plugin
style-ext-html-webpack-plugin copied to clipboard
cssRegex can support function ?

want:
const identifyCssFile = cssRegex => filename => typeof cssRegex === 'function' ? cssRegex (filename) : (cssRegex || CSS_REGEX).test(filename);
thank you