laravel-mix
Version:
The power of webpack, distilled for the rest of us.
19 lines (15 loc) • 441 B
JavaScript
const { Component } = require('./Component');
module.exports = class PurifyCss extends Component {
passive = true;
/**
* Required dependencies for the component.
*/
dependencies() {
if (this.context.config.purifyCss) {
throw new Error(
'PurifyCSS support is no longer available. We recommend using PurgeCss + postCss instead.'
);
}
return [];
}
};