Some checks failed
FarmMaps.Develop/FarmMapsLib/pipeline/head There was a failure building this commit
12 lines
240 B
TypeScript
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;
|
|
}
|
|
}
|