From 4bda94c3607e864cee8f5d0f69609a880d52903a Mon Sep 17 00:00:00 2001 From: Peter Bastiani Date: Tue, 30 Jan 2024 10:23:14 +0100 Subject: [PATCH] Fix path --- projects/common/src/fm/services/production-guard.service.ts | 2 +- tsconfig.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/projects/common/src/fm/services/production-guard.service.ts b/projects/common/src/fm/services/production-guard.service.ts index 9c4a6ee..2f8b873 100644 --- a/projects/common/src/fm/services/production-guard.service.ts +++ b/projects/common/src/fm/services/production-guard.service.ts @@ -1,5 +1,5 @@ import { Injectable } from '@angular/core'; -import { environment } from '../../../../../src/environments/environment'; +import { environment } from '@environment/environment'; @Injectable({ providedIn: 'root', diff --git a/tsconfig.json b/tsconfig.json index 8439a52..e1d5faf 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -34,6 +34,9 @@ ], "ngx-openlayers/*": [ "dist/ngx-openlayers/*" + ], + "@environment/*": [ + "src/environments/*" ] }, "useDefineForClassFields": false