Skip to content

Commit c1ac637

Browse files
authored
docs(resolve): and wildcard alias configuration (#7505)
1 parent 6240756 commit c1ac637

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

src/content/configuration/resolve.mdx

+23
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ contributors:
1818
- chenxsan
1919
- jamesgeorge007
2020
- snitin315
21+
- sapenlei
2122
---
2223

2324
These options change how modules are resolved. Webpack provides reasonable defaults, but it is possible to change the resolving in detail. Have a look at [Module Resolution](/concepts/module-resolution) for more explanation of how the resolver works.
@@ -97,6 +98,28 @@ import Test1 from 'xyz'; // Exact match, so path/to/file.js is resolved and impo
9798
import Test2 from 'xyz/file.js'; // Not an exact match, normal resolution takes place
9899
```
99100

101+
You can also use wildcards (`*`) in your alias configuration to create more flexible mappings:
102+
103+
**webpack.config.js**
104+
105+
```js
106+
module.exports = {
107+
//...
108+
resolve: {
109+
alias: {
110+
'@*': path.resolve(__dirname, 'src/*'), // maps @something to path/to/something
111+
},
112+
},
113+
};
114+
```
115+
116+
This allows you to use imports like:
117+
118+
```js
119+
import Component from '@components/Button';
120+
import utils from '@utils/helpers';
121+
```
122+
100123
The following table explains other cases:
101124

102125
| `alias:` | `import 'xyz'` | `import 'xyz/file.js'` |

0 commit comments

Comments
 (0)