So my styles file looks like this:
@import "normalize.css";
@import "ionicons/dist/css/icons.min.css";
@import "base/_grid";
@import "base/_variables";
@import "base/_mixins";
@import "base/_global";
@import "modules/_wrapper";
@import "modules/_row";
@import "modules/_hero";
@import "modules/_buttons";
@import "modules/_main-navigation";
Everything except ionicons works fine, and the ionicons.min.css file gets shown in the bundled css file, as well as normalize.css etc. The problem is that icons don't show unless I manually include the cdn in the index.html file... What I am missing here..?
So, when included from node_modules, ionicons don't appear in sources.
Thanks for all the help!