Skip to content

Commit a862904

Browse files
authored
docs(concepts): fix a link (#5341)
* docs(concepts): fix a link * work around prettier bug
1 parent 5807d75 commit a862904

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/content/concepts/configuration.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ You may have noticed that few webpack configurations look exactly alike. This is
1212

1313
Because it's a standard Node.js CommonJS module, you **can do the following**:
1414

15-
- import other files via `require(...)`
15+
- Import other files via `require(...)`
1616
- use utilities on npm via `require(...)`
1717
- use JavaScript control flow expressions, e.g. the `?:` operator
1818
- use constants or variables for often used values
@@ -22,7 +22,7 @@ Use these features when appropriate.
2222

2323
While they are technically feasible, **the following practices should be avoided**:
2424

25-
- Access CLI arguments, when using the webpack CLI (instead write your own CLI, or [use `--env`](/configuration/configuration-types/))
25+
- Access CLI arguments, when using the webpack CLI (instead write your own CLI, or [use `--env`](/api/cli/#env))
2626
- Export non-deterministic values (calling webpack twice should result in the same output files)
2727
- Write long configurations (instead split the configuration into multiple files)
2828

0 commit comments

Comments
 (0)