docs(code-splitting-harmony): Improve template.md

This commit is contained in:
Albus Dumbledore 2020-02-27 22:31:01 +05:30 committed by GitHub
parent 41ab6ef948
commit 749c397e90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ This example show how to use Code Splitting with the ES6 module syntax.
The standard `import` is sync.
`import(module: string) -> Promise` can be used to load modules on demand. This acts as split point for webpack and creates a chunk.
`import(module: string) -> Promise` can be used to load modules on demand. This acts as a split point for webpack and creates a chunk.
Providing dynamic expressions to `import` is possible. The same limits as with dynamic expressions in `require` calls apply here. Each possible module creates an additional chunk. In this example `import("c/" + name)` creates two additional chunks (one for each file in `node_modules/c/`). This is called "async context".