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