Skip to content

Commit

Permalink
Add environment logging in AppComponent constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
ianlabicani committed Mar 14, 2024
1 parent 786e7c4 commit ca07db0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app/app.component.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
import { Component } from '@angular/core';
import { RouterOutlet } from '@angular/router';
import { environment } from '../environments/environment';

@Component({
selector: 'app-root',
standalone: true,
imports: [RouterOutlet],
templateUrl: './app.component.html',
styleUrl: './app.component.scss'
styleUrl: './app.component.scss',
})
export class AppComponent {
title = 'seawatch';
constructor() {
console.log(environment.useEmulators);
}
}

0 comments on commit ca07db0

Please sign in to comment.