CARVIEW |
Select Language
HTTP/2 301
date: Fri, 25 Jul 2025 19:54:22 GMT
content-type: text/html
content-length: 162
location: https://webpack.js.org/plugins/min-chunk-size-plugin/
nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
server: cloudflare
access-control-allow-origin: *
expires: Fri, 25 Jul 2025 20:04:22 GMT
cache-control: max-age=600
x-proxy-cache: MISS
x-github-request-id: A813:2AA050:88A7:A78C:6883E0EB
accept-ranges: bytes
age: 0
via: 1.1 varnish
x-served-by: cache-maa10234-MAA
x-cache: MISS
x-cache-hits: 0
x-timer: S1753473262.891089,VS0,VE226
vary: Accept-Encoding
x-fastly-request-id: f8b194643a8b61dfa36c0b29945cc4d9f987ae21
cf-cache-status: DYNAMIC
report-to: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=0Yza8seCzgoa6U3jFUn%2FFSAc%2FSLk7BcYMBuVfpl7BenDZI%2B6HxlX6iakVUv6TM4BmOS1yjcN8QljgsFkqNXM2QZZPRNQrlQpikd8yaI%3D"}]}
cf-ray: 964e356eaab7c17e-BLR
HTTP/1.1 301 Moved Permanently
Date: Fri, 25 Jul 2025 19:54:22 GMT
Transfer-Encoding: chunked
Connection: keep-alive
Location: https://webpack.js.org/plugins/min-chunk-size-plugin/
Vary: accept-encoding
Report-To: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=z9wC%2FwPv7zAbr5E9LBVbC40MqVKP2lAqigIA7uMztIdlc7svKqT9W3eAuNBXD083e7h1ggP5YpjQKWkv%2B%2BcP0HYeZX9Ll07hKL3G4KI%3D"}]}
Nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
Server: cloudflare
CF-RAY: 964e35702dd925e0-BLR
HTTP/2 200
date: Fri, 25 Jul 2025 19:54:22 GMT
content-type: text/html; charset=utf-8
content-length: 12885
nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
server: cloudflare
last-modified: Fri, 25 Jul 2025 11:09:39 GMT
access-control-allow-origin: *
etag: W/"688365f3-16734"
expires: Fri, 25 Jul 2025 20:04:22 GMT
cache-control: max-age=600
content-encoding: gzip
x-proxy-cache: MISS
x-github-request-id: 9BD4:FBB58:98C6:B997:6883E0EC
accept-ranges: bytes
age: 0
via: 1.1 varnish
x-served-by: cache-maa10234-MAA
x-cache: MISS
x-cache-hits: 0
x-timer: S1753473262.142572,VS0,VE239
vary: Accept-Encoding
x-fastly-request-id: 20d68f34444460aa5d6dddcdab18487a77ee1ed8
cf-cache-status: DYNAMIC
report-to: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=blvYar5vmn1P7sWpAadM95GpyV95N4ZhwKIJIOUoqiUoaNKYi9hX3%2BfWKY%2Fk8ikUvegI7%2BOJRyGJcqYtD3El5ZNIL6BFKAYQBvQu9Sg%3D"}]}
cf-ray: 964e35703b60c17e-BLR
MinChunkSizePlugin | webpack
Community
webpack
SplitChunksPlugin
- Defaults
- Configuration
- optimization.splitChunks
- splitChunks.automaticNameDelimiter
- splitChunks.chunks
- splitChunks.maxAsyncRequests
- splitChunks.maxInitialRequests
- splitChunks.defaultSizeTypes
- splitChunks.minChunks
- splitChunks.hidePathInfo
- splitChunks.minSize
- splitChunks.minSizeReduction
- splitChunks.enforceSizeThreshold
- splitChunks.minRemainingSize
- splitChunks.layer
- splitChunks.maxSize
- splitChunks.maxAsyncSize
- splitChunks.maxInitialSize
- splitChunks.name
- splitChunks.usedExports
- splitChunks.cacheGroups
- Examples
webpack contrib
MiniCssExtractPlugin
- Getting Started
- Options
- Examples
- Recommended
- Minimal example
- Named export for CSS Modules
- The publicPath option as function
- Advanced configuration example
- Hot Module Reloading (HMR)
- Minimizing For Production
- Using preloaded or inlined CSS
- Extracting all CSS in a single file
- Extracting CSS based on entry
- Filename Option as function
- Long Term Caching
- Remove Order Warnings
- Multiple Themes
- Media Query Plugin
- Hooks
- Contributing
- License
MinChunkSizePlugin
Keep chunk size above the specified limit by merging chunks that are smaller than the minChunkSize
.
new webpack.optimize.MinChunkSizePlugin({
minChunkSize: 10000, // Minimum number of characters
});
Usage via CLI
This plugin and it's options can also be invoked via the CLI:
webpack --optimize-min-chunk-size 10000
« Previous
LimitChunkCountPlugin