From 03ecf92a88a6b3730c522b1607e461a56d5238df Mon Sep 17 00:00:00 2001 From: Filipe Silva Date: Mon, 30 Jan 2017 20:46:30 +0000 Subject: [PATCH] docs(deployment): fix links to enableProdMode (#25) (#3168) --- public/docs/ts/latest/guide/deployment.jade | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/docs/ts/latest/guide/deployment.jade b/public/docs/ts/latest/guide/deployment.jade index fe439e9a4e..0cacd3c235 100644 --- a/public/docs/ts/latest/guide/deployment.jade +++ b/public/docs/ts/latest/guide/deployment.jade @@ -16,7 +16,7 @@ a#toc * [Measure performance first](#measure) * [Angular configuration](#angular-configuration) * [The `base` tag](#base-tag) - * [Enable production mode](#enableprodmode) + * [Enable production mode](#enable-prod-mode) * [Lazy loading](#lazy-loading) * [Server configuration](#server-configuration) * [Routed apps must fallback to `index.html`](#fallback) @@ -70,7 +70,7 @@ a#dev-deploy 1. Configure the server to redirect requests for missing files to `index.html`. [More on this below](#fallback). - 1. Enable production mode as [described below](#enableprodmode) (optional). + 1. Enable production mode as [described below](#enable-prod-mode) (optional). That's the simplest deployment you can do. @@ -322,7 +322,7 @@ a#base-tag When the `base` tag is misconfigured, the app fails to load and the browser console displays `404 - Not Found` errors for the missing files. Look at where it _tried_ to find those files and adjust the base tag appropriately. -a#enableProdMode +a#enable-prod-mode :marked ### Enable production mode