feat(angular): disable ngcc when not needed

This commit is contained in:
Bo Vandersteene 2022-09-30 14:16:57 +02:00
parent e5c88d168f
commit 687e2776c0

View File

@ -58,7 +58,7 @@ export const webpack = async (webpackConfig: Configuration, options: PresetOptio
return webpackConfig;
}
if(angularOptions.enableNgcc === false) {
if(angularOptions.enableNgcc !== false) {
runNgcc();
}