FarmMapsLib/projects/common/src/fm/services/production-guard.service.ts
Peter Bastiani 4bda94c360
Some checks failed
FarmMaps.Develop/FarmMapsLib/pipeline/head There was a failure building this commit
Fix path
2024-01-30 10:23:14 +01:00

12 lines
240 B
TypeScript

import { Injectable } from '@angular/core';
import { environment } from '@environment/environment';
@Injectable({
providedIn: 'root',
})
export class ProductionGuard {
canActivate(): boolean {
return environment.production;
}
}