From eeb7d5d2a75df849aec946cbe7f6b717700e7b82 Mon Sep 17 00:00:00 2001 From: Bernhard Rode Date: Fri, 21 Jul 2017 10:26:09 +0200 Subject: [PATCH] fix(docs): update angular-cli variable angular-cli variable is production, not prod --- MIGRATION.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MIGRATION.md b/MIGRATION.md index d21e9d63f4..6a1b686a67 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -441,7 +441,7 @@ import { environment } from '../environments/environment'; // Angular CLI enviro @NgModule({ imports: [ - !environment.prod ? StoreDevtoolsModule.instrument({ maxAge: 50 }) : [] + !environment.production ? StoreDevtoolsModule.instrument({ maxAge: 50 }) : [] ] }) export class AppModule {}