challenge 5: http

This commit is contained in:
thomas laforge
2022-11-12 14:56:26 +01:00
parent 967df0216c
commit 0e405206ca
28 changed files with 618 additions and 26 deletions

View File

@@ -1,5 +1,7 @@
<h1>Directive enhancement</h1>
> Author: Thomas Laforge
## Information
Directive is a very powerful tool only offered by the Angular framework. You can apply the DRY principal by having shared logic inside a directive and applying it to any component you want.

View File

@@ -7,7 +7,9 @@
"targets": {
"build": {
"executor": "@angular-devkit/build-angular:browser",
"outputs": ["{options.outputPath}"],
"outputs": [
"{options.outputPath}"
],
"options": {
"outputPath": "dist/apps/ngfor-enhancement",
"index": "apps/ngfor-enhancement/src/index.html",
@@ -19,7 +21,9 @@
"apps/ngfor-enhancement/src/favicon.ico",
"apps/ngfor-enhancement/src/assets"
],
"styles": ["apps/ngfor-enhancement/src/styles.scss"],
"styles": [
"apps/ngfor-enhancement/src/styles.scss"
],
"scripts": []
},
"configurations": {