1.5.1 • Published 2 years ago

gl-icons-assets v1.5.1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

gl-icons-assets

version downloads downloads

What is this repository for?

This package (glaucioleonardo-assets-icons) is a Common icons to be used on web applications.

Table of contents

  1. Dependencies-peer:

  2. Configurations: 1.1. Configuring assets 1.2. Configuring external links / urls from anchors 1.3. Configuring side menu

Configuring assets

Inside the angular.json you need including the following information:

{
    "glob": "**/*",
    "input": "node_modules/gl-icons-assets/assets",
    "output": "/assets"
}

The output assets could be another path according to your setup.

Here is how the assets angular.json should be:

{
  ...
  "projects": {
    "lessons-learned-angular": {
      ...
      "architect": {
        "build": {
          "builder": "@angular-devkit/build-angular:browser",
          "options": {
            ...
            "assets": [
              ...,
              {
                "glob": "**/*",
                "input": "node_modules/gl-icons-assets/assets",
                "output": "/assets"
              },
              ...
            ],
            ...
          },
          ...
        },
        ...
      }
    }},
  ...
}