Skip to content

Commit 5a448d5

Browse files
committed
docs: fix broken output related links
1 parent 4b12dc8 commit 5a448d5

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

content/concepts/output.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ contributors:
77
- rouzbeh84
88
---
99

10-
Options affecting the output of the compilation. `output` options tell webpack how to write the compiled files to disk. Note that, while there can be multiple `entry` points, only one `output` configuration is specified.
10+
Configuring the `output` configuration options tell webpack how to write the compiled files to disk. Note that, while there can be multiple `entry` points, only one `output` configuration is specified.
1111

1212

1313
## Usage
@@ -35,7 +35,7 @@ This configuration would output a single `bundle.js` file into the `/home/proj/p
3535

3636
## Multiple Entry Points
3737

38-
If your configuration creates more than a single "chunk" (as with multiple entry points or when using plugins like CommonsChunkPlugin), you should use [substitutions](/config/output#output-filename) to ensure that each file has a unique name.
38+
If your configuration creates more than a single "chunk" (as with multiple entry points or when using plugins like CommonsChunkPlugin), you should use [substitutions](/configuration/output#output-filename) to ensure that each file has a unique name.
3939

4040
```javascript
4141
{

content/guides/caching.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ application.js?build=1
3434
application.css?build=1
3535
```
3636

37-
It is even easier to do with webpack. Each webpack build generates a unique hash which can be used to compose a filename, by including output [placeholders](/concepts/output/#options).
38-
The following example config will generate 2 files (1 per entry) with hashes in filenames:
37+
It is even easier to do with webpack. Each webpack build generates a unique hash which can be used to compose a filename, by including output [substitutions](/configuration/output#output-filename). The following example config will generate 2 files (1 per entry) with hashes in filenames:
3938

4039
```js
4140
// webpack.config.js

0 commit comments

Comments
 (0)