How to remove ionicons-font from ionic

The ionicons-font is not used in my app, so
is it possible to remove it, and how?

Have you tried to override ionic’s main in your bower.json?
Like below where I removed "release/fonts/*" from the main property in Ionic’s own bower.json file.

"overrides": {
  "ionic": {
      "main": [
        "release/css/ionic.css",
        "release/js/ionic.js",
        "release/js/ionic-angular.js"
      ]
  }
}