You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/contribute/index.md
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ contributors:
7
7
- harrynewsome
8
8
- dhedgecock
9
9
- tbroadley
10
+
- EugeneHlushko
10
11
---
11
12
12
13
The people who contribute to webpack do so for the love of open source, our users and ecosystem, and most importantly, pushing the web forward together. Because of our [Open Collective](https://opencollective.com/webpack) model for funding and transparency, we are able to funnel support and funds through contributors, dependent projects, and the contributor and core teams. To make a donation, simply click the button below...
@@ -29,7 +30,7 @@ The biggest core feature we'd like to provide is an enjoyable development experi
29
30
Anybody can help by doing any of the following:
30
31
31
32
- Ask your employer to use webpack in projects.
32
-
- Help us write and maintain the content on this site (see the [writer's guide](/writers-guide)).
33
+
- Help us write and maintain the content on this site (see the [writer's guide](/contribute/writers-guide/)).
33
34
- Contribute to the [core repository](https://github.com/webpack/webpack).
34
35
- Become a backer or sponsor on [open collective](https://opencollective.com/webpack#support).
@@ -171,6 +172,8 @@ The name of the split chunk. Providing `true` will automatically generate a name
171
172
172
173
Providing a string or a function allows you to use a custom name. Specifying either a string or a function that always returns the same string will merge all common modules and vendors into a single chunk. This might lead to bigger initial downloads and slow down page loads.
173
174
175
+
If you choose to specify a function, you may find the `chunk.name` and `chunk.hash` properties (where `chunk` is an element of the `chunks` array) particularly useful in choosing a name for your chunk.
176
+
174
177
If the `splitChunks.name` matches an [entry point](/configuration/entry-context/#entry) name, the entry point will be removed.
175
178
176
179
T> It is recommended to set `splitChunks.name` to `false` for production builds so that it doesn't change names unnecessarily.
0 commit comments