From eb20ebf7246682d8a2ea237823fcbcc8810b7e34 Mon Sep 17 00:00:00 2001 From: Jing Ma Date: Wed, 5 Sep 2018 17:29:36 +0800 Subject: [PATCH 1/2] Fixed link to `output` property --- src/content/concepts/targets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/concepts/targets.md b/src/content/concepts/targets.md index cea4b6aaf659..930aee38cbea 100644 --- a/src/content/concepts/targets.md +++ b/src/content/concepts/targets.md @@ -11,7 +11,7 @@ contributors: Because JavaScript can be written for both server and browser, webpack offers multiple deployment _targets_ that you can set in your webpack [configuration](/configuration). -W> The webpack `target` property is not to be confused with the `output.libraryTarget` property. For more information see [our guide](/concepts/output) on the `output` property. +W> The webpack `target` property is not to be confused with the `output.libraryTarget` property. For more information see [our guide](/configuration/output) on the `output` property. ## Usage From 563715ce1fe5157cfa3b249265846b1316659ba0 Mon Sep 17 00:00:00 2001 From: Jing Ma Date: Thu, 6 Sep 2018 21:12:27 +0800 Subject: [PATCH 2/2] Adding the trailing slash for links --- src/content/concepts/targets.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/concepts/targets.md b/src/content/concepts/targets.md index 930aee38cbea..1ae5cb6a8d43 100644 --- a/src/content/concepts/targets.md +++ b/src/content/concepts/targets.md @@ -11,7 +11,7 @@ contributors: Because JavaScript can be written for both server and browser, webpack offers multiple deployment _targets_ that you can set in your webpack [configuration](/configuration). -W> The webpack `target` property is not to be confused with the `output.libraryTarget` property. For more information see [our guide](/configuration/output) on the `output` property. +W> The webpack `target` property is not to be confused with the `output.libraryTarget` property. For more information see [our guide](/concepts/output/) on the `output` property. ## Usage @@ -27,7 +27,7 @@ module.exports = { In the example above, using `node` webpack will compile for usage in a Node.js-like environment (uses Node.js `require` to load chunks and not touch any built in modules like `fs` or `path`). -Each _target_ has a variety of deployment/environment specific additions, support to fit its needs. See what [targets are available](/configuration/target). +Each _target_ has a variety of deployment/environment specific additions, support to fit its needs. See what [targets are available](/configuration/target/). ?>Further expansion for other popular target values