Files
tryno10/app/code/node_modules/laravel-mix/src/components/PurifyCss.js
T
2022-04-07 18:09:31 +05:30

19 lines
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 [];
}
};