ui
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
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 [];
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user