docs(deployment): fix links to enableProdMode (#25) (#3168)

This commit is contained in:
Filipe Silva 2017-01-30 20:46:30 +00:00 committed by GitHub
parent e5a25eb236
commit 03ecf92a88
1 changed files with 3 additions and 3 deletions

View File

@ -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