Last active
March 24, 2021 05:11
-
-
Save pablotolentino/e9ba049cd5364de759a4b95b610af407 to your computer and use it in GitHub Desktop.
obtener versión de ejecución
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class AppComponent implements OnInit { | |
private config: {version: string}; | |
ngOnInit() { | |
this.config = require('./../assets/config.json'); | |
console.log(this.config.version); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment