From 5c23ea71c489435d4f82b9dcd999424df71e4726 Mon Sep 17 00:00:00 2001 From: Judy Bogart Date: Mon, 18 Nov 2019 13:50:02 -0800 Subject: [PATCH] docs: add version requirement for routing option (#33909) PR Close #33909 --- aio/content/guide/lazy-loading-ngmodules.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/aio/content/guide/lazy-loading-ngmodules.md b/aio/content/guide/lazy-loading-ngmodules.md index abc8a2213d..ad753d1396 100644 --- a/aio/content/guide/lazy-loading-ngmodules.md +++ b/aio/content/guide/lazy-loading-ngmodules.md @@ -29,6 +29,13 @@ generates a file called `app-routing.module.ts`, which is one of the files you need for setting up lazy loading for your feature module. Navigate into the project by issuing the command `cd customer-app`. +
+ +The `--routing` option requires Angular/CLI version 8.1 or higher. +See [Keeping Up to Date](guide/updating). + +
+ ## Create a feature module with routing Next, you’ll need a feature module with a component to route to.