SharePoint Asked by Gaurav Goyal on November 11, 2021
I am using third party css in SPFx. When I am building it, SPFx is showing me lots of warning messages :
I am using Windows 10 / SPFx 1.11.0.
Please let me know how to disable these warning messages.
Thanks,
Gaurav Goyal
Resolution
You should either fix all warnings or if it's not possible, you can ignore them.
For that purpose, you should modify your gulpfile.js.
There is one out of the box build suppression method call in gulpfile. You can add your own one using the same build.addSuppression method.
The method also accepts regexp, which is very convenient for us. Just add
build.addSuppression(/Warning - [sass] The local CSS class/gi);
or
build.addSuppression(/Warning/gi);
to ignore all warnings.
However, it's not very convenient, because probably you still want to see some warnings. That's why a better idea would be ignoring some of them during the production bundle.
Modify your code a little bit:
let args = build.getConfig().args;
let isProductionBundle = args._.indexOf('bundle') !== -1 && (args.ship || args.production || args.p);
if (isProductionBundle) {
build.addSuppression(/Warning - [sass] The local CSS class/gi);
// OR
build.addSuppression(/Warning/gi);
}
Answered by Jefin Mathew on November 11, 2021
Get help from others!
Recent Answers
Recent Questions
© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP