gl-icons-assets
v1.7.0
Published
Common icons to be used on web applications.
Downloads
51
Maintainers
Readme
gl-icons-assets
What is this repository for?
This package (glaucioleonardo-assets-icons) is a Common icons to be used on web applications.
Table of contents
Dependencies-peer:
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"
},
...
],
...
},
...
},
...
}
}},
...
}