diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 1866296..8aa7b2c 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -22,6 +22,7 @@
},
"args": [
"build",
+ "--configuration=development",
"--base-href=http://localhost:5000"
],
"problemMatcher": "$msCompile"
diff --git a/src/Client/src/app/app.html b/src/Client/src/app/app.html
index 70d5048..dbdba2d 100644
--- a/src/Client/src/app/app.html
+++ b/src/Client/src/app/app.html
@@ -3,17 +3,23 @@
HOME
JOB BOARD
RESUMES
+ COMPANIES
diff --git a/src/Client/src/app/app.ts b/src/Client/src/app/app.ts
index bcba189..2976021 100644
--- a/src/Client/src/app/app.ts
+++ b/src/Client/src/app/app.ts
@@ -3,6 +3,7 @@ import { Router, RouterModule, RouterOutlet, ActivatedRoute } from '@angular/rou
import { Authentication } from './services/Authentication';
import { CommonModule, Location } from '@angular/common';
import { HttpClient } from '@angular/common/http';
+import { isDevMode } from '@angular/core';
@Component({
selector: 'app-root',
@@ -16,7 +17,12 @@ export class App {
@ViewChild('jobsLink') jobLink!: ElementRef;
@ViewChild('resumesLink') resumeLink!: ElementRef;
+ devMode: boolean = false;
+
constructor( private http: HttpClient, public auth: Authentication, private router: Router, private route: ActivatedRoute, private location: Location){
+
+ this.devMode = isDevMode();
+
this.route.queryParams.subscribe(params => {
const loginToken = params['LoginToken'];