FarmMapsLib/projects/common/src/fm/services/production-guard.service.ts

11 lines
185 B
TypeScript
Raw Normal View History

2024-01-30 09:52:02 +00:00
import { Injectable, isDevMode } from '@angular/core';
@Injectable({
providedIn: 'root',
})
export class ProductionGuard {
canActivate(): boolean {
2024-01-30 09:52:02 +00:00
return !isDevMode();
}
}