In my Angular 7 project, I am utilizing C3 and importing all the necessary files at the beginning of my .ts component file using a wildcard.
import * as c3 from 'c3';
While this method works well overall, I encountered an issue where my CSS overrides were loaded before the C3 package's c3.min.css, causing my modifications to not take effect. Is there a way to exclude one specific file during import?
Alternatively, do I need to manually import each file associated with C3 individually? Using the component's SCSS file is another option, but my overrides are part of a bootstrap-like package.