Skip to content

Commit

Permalink
docs: chunk level incremental (web-infra-dev#8505)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahabhgk authored Nov 21, 2024
1 parent 4f66057 commit 6610568
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions website/docs/en/config/experiments.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -241,14 +241,17 @@ module.exports = {
```ts
type Incremental = {
make?: boolean;
emitAssets?: boolean;
inferAsyncModules?: boolean;
providedExports?: boolean;
dependenciesDiagnostics?: boolean;
buildChunkGraph?: boolean;
modulesHashes?: boolean;
modulesCodegen?: boolean;
modulesRuntimeRequirements?: boolean;
buildChunkGraph?: boolean;
chunksRuntimeRequirements?: boolean;
chunksHashes?: boolean;
chunksRender?: boolean;
emitAssets?: boolean;
};
```

Expand Down
7 changes: 5 additions & 2 deletions website/docs/zh/config/experiments.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -239,14 +239,17 @@ module.exports = {
```ts
type Incremental = {
make?: boolean;
emitAssets?: boolean;
inferAsyncModules?: boolean;
providedExports?: boolean;
dependenciesDiagnostics?: boolean;
buildChunkGraph?: boolean;
modulesHashes?: boolean;
modulesCodegen?: boolean;
modulesRuntimeRequirements?: boolean;
buildChunkGraph?: boolean;
chunksRuntimeRequirements?: boolean;
chunksHashes?: boolean;
chunksRender?: boolean;
emitAssets?: boolean;
};
```

Expand Down

0 comments on commit 6610568

Please sign in to comment.