-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -143,6 +143,29 @@ externals: [{ | |
}] | ||
``` | ||
|
||
### preload | ||
|
||
```js | ||
string[] | Set<string> | ||
``` | ||
|
||
An array or a set of names of dynamic chunks that will be injected to the output HTML document | ||
as preload links. | ||
|
||
##### Example | ||
|
||
```js | ||
preload: ['lib'], | ||
``` | ||
|
||
### modules | ||
|
||
```js | ||
boolean | undefined | ||
``` | ||
|
||
Inject entries as modules. This only works if the output format supports modules. | ||
|
||
### minify | ||
|
||
```js | ||
|
@@ -166,4 +189,3 @@ minify: { | |
## License | ||
|
||
[MIT](LICENSE) © [Petr Tsymbarovich](mailto:[email protected]) | ||
|