Upgrade ionic icons

In my application I use ionicons 2.0.1 so I added the dependency to my bower.json:

    "ionic": "driftyco/ionic-bower#v1.0.0-beta.14",
    "ionicons": "~2.0.1"

So I end up including both css in the index.html

    <!-- bower:css -->
    <link rel="stylesheet" href="vendor/ionic.css">
    <link rel="stylesheet" href="vendor/ionicons.css">
    <!-- endinject -->

The issue is that ionic.css includes ionicons 1.5.2.

Is there a way to remove ionicons from ionic.css.

I use gulp for my build process.

Thanks

What i do to use the newest ionicons is go to ionicons.com and download it. Then, i copy the files inside /fonts folder to my app’s /lib/ionic/css/fonts, and it works…

1 Like