Skip to content

Commit b4a8428

Browse files
committed
fix: ci
1 parent c7b5dcb commit b4a8428

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

src/content/migrate/3.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ module: {
291291
}
292292
```
293293

294-
### new ExtractTextPlugin({options})
294+
### `new ExtractTextPlugin({options})`
295295

296296
```diff
297297
plugins: [

src/content/plugins/split-chunks-plugin.mdx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -171,15 +171,15 @@ Minimum size, in bytes, for a chunk to be generated.
171171

172172
### splitChunks.enforceSizeThreshold
173173

174-
#### splitChunks.cacheGroups.{cacheGroup}.enforceSizeThreshold
174+
#### `splitChunks.cacheGroups.{cacheGroup}.enforceSizeThreshold`
175175

176176
`number = 50000`
177177

178178
Size threshold at which splitting is enforced and other restrictions (minRemainingSize, maxAsyncRequests, maxInitialRequests) are ignored.
179179

180180
### splitChunks.minRemainingSize
181181

182-
#### splitChunks.cacheGroups.{cacheGroup}.minRemainingSize
182+
#### `splitChunks.cacheGroups.{cacheGroup}.minRemainingSize`
183183

184184
`number = 0`
185185

@@ -189,7 +189,7 @@ W> `splitChunks.minRemainingSize` only takes effect when a single chunk is remai
189189

190190
### splitChunks.layer
191191

192-
#### splitChunks.cacheGroups.{cacheGroup}.layer
192+
#### `splitChunks.cacheGroups.{cacheGroup}.layer`
193193

194194
`RegExp` `string` `function`
195195

@@ -281,7 +281,7 @@ W> When assigning equal names to different split chunks, all vendor modules are
281281

282282
### splitChunks.usedExports
283283

284-
#### splitChunks.cacheGroups{cacheGroup}.usedExports
284+
#### `splitChunks.cacheGroups{cacheGroup}.usedExports`
285285

286286
`boolean = true`
287287

@@ -307,13 +307,13 @@ module.exports = {
307307
};
308308
```
309309

310-
#### splitChunks.cacheGroups.{cacheGroup}.priority
310+
#### `splitChunks.cacheGroups.{cacheGroup}.priority`
311311

312312
`number = -20`
313313

314314
A module can belong to multiple cache groups. The optimization will prefer the cache group with a higher `priority`. The default groups have a negative priority to allow custom groups to take higher priority (default value is `0` for custom groups).
315315

316-
#### splitChunks.cacheGroups.{cacheGroup}.reuseExistingChunk
316+
#### `splitChunks.cacheGroups.{cacheGroup}.reuseExistingChunk`
317317

318318
`boolean = true`
319319

@@ -336,7 +336,7 @@ module.exports = {
336336
};
337337
```
338338

339-
#### splitChunks.cacheGroups.{cacheGroup}.type
339+
#### `splitChunks.cacheGroups.{cacheGroup}.type`
340340

341341
`function` `RegExp` `string`
342342

@@ -361,7 +361,7 @@ module.exports = {
361361

362362
#### splitChunks.cacheGroups.test
363363

364-
#### splitChunks.cacheGroups.{cacheGroup}.test
364+
#### `splitChunks.cacheGroups.{cacheGroup}.test`
365365

366366
`function (module, { chunkGraph, moduleGraph }) => boolean` `RegExp` `string`
367367

@@ -422,7 +422,7 @@ module.exports = {
422422
};
423423
```
424424

425-
#### splitChunks.cacheGroups.{cacheGroup}.filename
425+
#### `splitChunks.cacheGroups.{cacheGroup}.filename`
426426

427427
`string` `function (pathData, assetInfo) => string`
428428

@@ -489,7 +489,7 @@ module.exports = {
489489
};
490490
```
491491

492-
#### splitChunks.cacheGroups.{cacheGroup}.enforce
492+
#### `splitChunks.cacheGroups.{cacheGroup}.enforce`
493493

494494
`boolean = false`
495495

@@ -512,7 +512,7 @@ module.exports = {
512512
};
513513
```
514514

515-
#### splitChunks.cacheGroups.{cacheGroup}.idHint
515+
#### `splitChunks.cacheGroups.{cacheGroup}.idHint`
516516

517517
`string`
518518

0 commit comments

Comments
 (0)