From 7544853b21da8066bdd58a1cd5b759d3a21ec53c Mon Sep 17 00:00:00 2001 From: Filipe Silva Date: Mon, 30 Jan 2017 16:56:19 +0000 Subject: [PATCH] docs(deployment): fix links to aot cookbook --- 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 8e14547f9d..fe439e9a4e 100644 --- a/public/docs/ts/latest/guide/deployment.jade +++ b/public/docs/ts/latest/guide/deployment.jade @@ -34,7 +34,7 @@ a#overview * [_Ahead of Time_ compilation (AOT)](#aot "AOT Compilation") is the first of [several optimization strategies](#optimize). - You'll also want to read the [detailed instructions in the AOT Cookbook](aot-compiler.html "AOT Cookbook"). + You'll also want to read the [detailed instructions in the AOT Cookbook](../cookbook/aot-compiler.html "AOT Cookbook"). * [Webpack](#webpack "Webpack Optimization") is a popular general purpose packaging tool with a rich ecosystem, including plugins for AOT. The Angular [webpack guide](webpack.html "Webpack: an introduction") can get you started and @@ -224,7 +224,7 @@ a#aot * You don't download the Angular compiler, which is pretty big on its own. * The compiler discards unused Angular directives that a tree-shaking tool can then exclude. - Learn more about AOT Compilation in the [AOT Cookbook](aot-compiler.html "AOT Cookbook") + Learn more about AOT Compilation in the [AOT Cookbook](../cookbook/aot-compiler.html "AOT Cookbook") which describes running the AOT compiler from the command line and using [_rollup_](#rollup) for bundling, minification, uglification and tree shaking. @@ -510,4 +510,4 @@ a#next-steps :marked ## Next steps If you want to go beyond the [simple _copy-deploy_](#dev-deploy "Simplest deployment possible") approach, - read the [AOT Cookbook](aot-compiler.html "AOT Cookbook") next. + read the [AOT Cookbook](../cookbook/aot-compiler.html "AOT Cookbook") next.