Skip to content

Commit cef37d1

Browse files
committed
use headings
1 parent fb350d1 commit cef37d1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/concepts/module-resolution.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The dependency module can be from the application code or a third party library.
2121

2222
`webpack` resolves three kinds of file paths
2323

24-
* Absolute paths
24+
### Absolute paths
2525

2626
```js
2727
import "/home/me/file";
@@ -30,7 +30,7 @@ import "C:\\Users\\me\\file";
3030

3131
Since we already have the absolute path to the file, no further resolution is required.
3232

33-
* Relative paths
33+
### Relative paths
3434

3535
```js
3636
import "../src/file";
@@ -39,7 +39,7 @@ import "./file";
3939

4040
In this case, the directory of the resource file is taken to be the context directory (the directory of the currently processed file). The given relative path is joined to the context path to produce the absolute path to the file.
4141

42-
* Module path
42+
### Module path
4343

4444
```js
4545
import "module";

0 commit comments

Comments
 (0)