You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// @param {object} options The options object// @param {string} options.filename The filename// @param {string} options.data The CSS file content// @param {string} options.rootDir The root directory// @param {string} options.relativePath The relative path// @param {string} options.href The href attribute// @param {function} done The done callback
onFlush: function(options,done){// Method 1:// This will keep original module.exports unchangeddone();// Method 2:// Pass a null value to the done callback if you do not want to embed CSS into a JavaScript bundledone(null);// Method 3:// Pass a text string to the done callback to customize module.exportsdone('module.exports = '+JSON.stringify(options.data)+';');}