Skip to content

Instantly share code, notes, and snippets.

@t-palmer
Created July 18, 2018 22:42
Show Gist options
  • Save t-palmer/bdc18296783315fe5d1b1846902e9f98 to your computer and use it in GitHub Desktop.
Save t-palmer/bdc18296783315fe5d1b1846902e9f98 to your computer and use it in GitHub Desktop.
ng-configuration App Component example
<h1>
Environment
</h1>
<pre>{{env | json}}</pre>
import { Component } from '@angular/core';
import { environment } from '../environments/environment';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
env = environment;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment